remove exit station

This commit is contained in:
2026-06-14 11:21:30 +03:30
parent 0b7b22ff87
commit 0f65437bfa
5 changed files with 13 additions and 15 deletions

View File

@@ -12,8 +12,6 @@ return new class extends Migration
public function up(): void
{
Schema::table('mission_violations', function (Blueprint $table) {
$table->dateTime('exit_station')->nullable();
$table->dateTime('enter_station')->nullable();
$table->unsignedInteger('station_id')->nullable();
$table->string('station_name')->nullable();
});
@@ -25,7 +23,7 @@ return new class extends Migration
public function down(): void
{
Schema::table('mission_violations', function (Blueprint $table) {
$table->dropColumn(['exit_station', 'enter_station']);
$table->dropColumn(['station_id', 'station_name']);
});
}
};