From 60655d00e8be2dedf8ef19fe2c28d22b9dba8b7f Mon Sep 17 00:00:00 2001 From: ildyria Date: Sun, 28 Apr 2024 19:29:24 +0200 Subject: [PATCH] a bit too fast --- database/migrations/2024_04_28_172241_add_album_copyright.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2024_04_28_172241_add_album_copyright.php b/database/migrations/2024_04_28_172241_add_album_copyright.php index 3659ca9db2a..ab283e0362b 100644 --- a/database/migrations/2024_04_28_172241_add_album_copyright.php +++ b/database/migrations/2024_04_28_172241_add_album_copyright.php @@ -13,7 +13,7 @@ */ public function up(): void { - Schema::create(self::TABLE, function (Blueprint $table) { + Schema::table(self::TABLE, function (Blueprint $table) { $table->string(self::COLUMN, 300)->nullable()->default(null); }); }