This commit is contained in:
Adrian Hopek
2022-03-17 14:36:05 +01:00
parent 10057cda7d
commit 1b44cf9fc5
2 changed files with 1 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ return new class() extends Migration {
{
Schema::table("vacation_requests", function (Blueprint $table): void {
$table->dropColumn("event_ids");
$table->string("name");
$table->string("name")->nullable();
});
}
};