Skip to content

Commit

Permalink
Added missing variable in the migration stub
Browse files Browse the repository at this point in the history
  • Loading branch information
quentin.schmick committed Oct 18, 2021
1 parent 688786b commit 069ebd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/migration.stub
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class {CLASS_NAME} extends Migration
$table->string('field_name')->index();
$table->string('field_value_old')->nullable()->index();
$table->string('field_value_new')->nullable()->index();
$table->timestamp('occurred_at')->index();
$table->timestamp('occurred_at', {PRECISION})->index();
$table->timestamps();
{PROCESS_IDS_SETUP}

Expand Down

0 comments on commit 069ebd8

Please sign in to comment.