timestamp('scheduled_at')->after('user_id')->nullable()->default(null); }); } /** * Reverse the migrations. */ public function down() { Schema::table('incidents', function (Blueprint $table) { $table->dropColumn('scheduled_at'); }); } }