down(); } Schema::create('#tabela#', function(Blueprint $table) { $table->increments('id'); #camposmigration# $table->timestamps(); $table->softDeletes(); }); #relations# } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('#tabela#'); } }