Refactor application status update logic and add complex_status column
This commit is contained in:
@@ -20,6 +20,7 @@ return new class extends Migration
|
||||
});
|
||||
Schema::table('applications', function (Blueprint $table) {
|
||||
$table->dropColumn('additional_destinations');
|
||||
$table->text('complex_status')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -31,6 +32,7 @@ return new class extends Migration
|
||||
Schema::dropIfExists('additional_destinations');
|
||||
Schema::table('applications', function (Blueprint $table) {
|
||||
$table->string('additional_destinations')->nullable()->after('destination');
|
||||
$table->dropColumn('complex_status');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user