diff --git a/packages/core/database/migrations/2024_01_11_100000_add_description_to_attributes_table.php b/packages/core/database/migrations/2024_01_11_100000_add_description_to_attributes_table.php index 4c9cad4fb7..1ac6417209 100644 --- a/packages/core/database/migrations/2024_01_11_100000_add_description_to_attributes_table.php +++ b/packages/core/database/migrations/2024_01_11_100000_add_description_to_attributes_table.php @@ -9,7 +9,7 @@ public function up(): void { Schema::table($this->prefix.'attributes', function (Blueprint $table) { - $table->json('description')->after('name'); + $table->json('description')->after('name')->nullable(); }); }