Skip to content

Commit a3fca23

Browse files
Fix migration.
1 parent cbfd954 commit a3fca23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/migrations/2020_09_12_000100_update_person_events_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function down()
3030
{
3131
//
3232
Schema::table('person_events', function (Blueprint $table) {
33-
$table->dropColumn('attr');
33+
$table->text('attr')->nullable(false)->change();
3434
});
3535
}
3636
}

0 commit comments

Comments
 (0)