Skip to content

Commit

Permalink
Fixes attribute description migration in postgresql (#1851)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstoks authored Aug 16, 2024
1 parent c343ac3 commit 5d32f39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
}

Expand Down

0 comments on commit 5d32f39

Please sign in to comment.