Skip to content

Commit 069ebd8

Browse files
author
quentin.schmick
committed
Added missing variable in the migration stub
1 parent 688786b commit 069ebd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/migration.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class {CLASS_NAME} extends Migration
2121
$table->string('field_name')->index();
2222
$table->string('field_value_old')->nullable()->index();
2323
$table->string('field_value_new')->nullable()->index();
24-
$table->timestamp('occurred_at')->index();
24+
$table->timestamp('occurred_at', {PRECISION})->index();
2525
$table->timestamps();
2626
{PROCESS_IDS_SETUP}
2727

0 commit comments

Comments
 (0)