Skip to content

Commit ab57094

Browse files
Fix migration again.
1 parent 9cbe961 commit ab57094

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/migrations/2020_06_11_150000_update_add_columns_person_events_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function up()
1515
{
1616
//
1717
Schema::table('person_events', function (Blueprint $table) {
18-
$table->unsignedBigInteger('person_id');
18+
$table->unsignedBigInteger('person_id')->nullable();
1919
$table->string('title')->nullable();
2020
$table->string('date')->nullable();
2121
$table->string('description')->nullable();

0 commit comments

Comments
 (0)