Skip to content

Commit 145e6a9

Browse files
Fix migration.
1 parent 9270030 commit 145e6a9

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
@@ -16,7 +16,7 @@ public function up()
1616
//
1717
if (Schema::hasColumn('person_events', 'attr')) {
1818
Schema::table('person_events', function (Blueprint $table) {
19-
$table->text('attr', 65535)->nullable()->change();
19+
$table->text('attr')->nullable()->change();
2020
});
2121
}
2222
}

0 commit comments

Comments
 (0)