Skip to content

Commit b97c5ab

Browse files
committed
chore: missing column bad merge
1 parent 17a231d commit b97c5ab

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Laravel/workbench/database/migrations/2023_07_15_231244_create_book_table.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public function up(): void
3434
$table->date('publication_date')->nullable();
3535
$table->boolean('is_available')->default(true);
3636
$table->text('internal_note')->nullable();
37+
$table->boolean('published')->nullable();
3738
$table->enum('status', ['PUBLISHED', 'DRAFT'])->default('PUBLISHED');
3839
$table->integer('author_id')->unsigned();
3940
$table->foreign('author_id')->references('id')->on('authors');

0 commit comments

Comments
 (0)