change vacation request name

This commit is contained in:
Adrian Hopek
2022-03-17 13:32:38 +01:00
parent dc77292278
commit 4f6883b451
6 changed files with 11 additions and 42 deletions

View File

@@ -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");
});
}
};