timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('services', function (Blueprint $table) { $table->dropColumn('created_at'); $table->dropColumn('updated_at'); }); } }