From c749e69abc037b08c3724ed0bc50c329114ff252 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 15 Nov 2020 06:09:23 +0100 Subject: [PATCH] Rename column --- database/migrations/2020_11_12_070604_changes_for_v550.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/database/migrations/2020_11_12_070604_changes_for_v550.php b/database/migrations/2020_11_12_070604_changes_for_v550.php index d21a24a4d8..db437bcf1f 100644 --- a/database/migrations/2020_11_12_070604_changes_for_v550.php +++ b/database/migrations/2020_11_12_070604_changes_for_v550.php @@ -50,7 +50,7 @@ class ChangesForV550 extends Migration 'budget_limits', static function (Blueprint $table) { $table->dropColumn('repeat_freq'); - $table->dropColumn('auto_budget'); + $table->dropColumn('generated'); } ); } @@ -80,7 +80,7 @@ class ChangesForV550 extends Migration // create new failed_jobs table. Schema::create( 'failed_jobs', function (Blueprint $table) { - $table->id(); + $table->bigIncrements('id'); $table->string('uuid')->unique(); $table->text('connection'); $table->text('queue'); @@ -106,7 +106,7 @@ class ChangesForV550 extends Migration 'budget_limits', static function (Blueprint $table) { $table->string('repeat_freq', 12)->nullable(); - $table->boolean('auto_budget')->default(false); + $table->boolean('generated')->default(false); } ); }