change vacation request name
This commit is contained in:
@@ -11,6 +11,7 @@ return new class() extends Migration {
|
||||
{
|
||||
Schema::table("vacation_requests", function (Blueprint $table): void {
|
||||
$table->json("event_ids")->nullable();
|
||||
$table->dropColumn("name");
|
||||
});
|
||||
}
|
||||
|
||||
@@ -18,6 +19,7 @@ return new class() extends Migration {
|
||||
{
|
||||
Schema::table("vacation_requests", function (Blueprint $table): void {
|
||||
$table->dropColumn("event_ids");
|
||||
$table->string("name");
|
||||
});
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user