char('id', 8)->primary(); $table->string('name'); $table->tinyInteger('active')->default(1); $table->date('owned_since')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('misc_services'); } }