diff --git a/src/migrations/20230327130311_change_scenarios_jobs_id_column_to_bigint.php b/src/migrations/20230327130311_change_scenarios_jobs_id_column_to_bigint.php new file mode 100644 index 0000000..4a1d087 --- /dev/null +++ b/src/migrations/20230327130311_change_scenarios_jobs_id_column_to_bigint.php @@ -0,0 +1,14 @@ +table('scenarios_jobs') + ->changeColumn('id', 'biginteger', ['identity' => true]) + ->update(); + } +}