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