From 65d45ea787decc1c329c72689669d5f11740161b Mon Sep 17 00:00:00 2001 From: Daniel Weissengruber Date: Thu, 4 Mar 2021 12:25:14 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=20Fix=20website=5Fid=20datatype?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2021_03_04_095453_add_foreign_keys.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/database/migrations/2021_03_04_095453_add_foreign_keys.php b/database/migrations/2021_03_04_095453_add_foreign_keys.php index f9a40f2..b8226e1 100644 --- a/database/migrations/2021_03_04_095453_add_foreign_keys.php +++ b/database/migrations/2021_03_04_095453_add_foreign_keys.php @@ -14,42 +14,42 @@ class AddForeignKeys extends Migration public function up() { Schema::table('open_graph_scans', function (Blueprint $table) { - $table->integer('website_id')->unsigned()->change(); + $table->bigInteger('website_id')->unsigned()->index()->change(); $table->foreign('website_id')->references('id')->on('websites')->onDelete('cascade'); }); Schema::table('robot_scans', function (Blueprint $table) { - $table->integer('website_id')->unsigned()->change(); + $table->bigInteger('website_id')->unsigned()->index()->change(); $table->foreign('website_id')->references('id')->on('websites')->onDelete('cascade'); }); Schema::table('dns_scans', function (Blueprint $table) { - $table->integer('website_id')->unsigned()->change(); + $table->bigInteger('website_id')->unsigned()->index()->change(); $table->foreign('website_id')->references('id')->on('websites')->onDelete('cascade'); }); Schema::table('visual_diffs', function (Blueprint $table) { - $table->integer('website_id')->unsigned()->change(); + $table->bigInteger('website_id')->unsigned()->index()->change(); $table->foreign('website_id')->references('id')->on('websites')->onDelete('cascade'); }); Schema::table('cron_pings', function (Blueprint $table) { - $table->integer('website_id')->unsigned()->change(); + $table->bigInteger('website_id')->unsigned()->index()->change(); $table->foreign('website_id')->references('id')->on('websites')->onDelete('cascade'); }); Schema::table('uptime_scans', function (Blueprint $table) { - $table->integer('website_id')->unsigned()->change(); + $table->bigInteger('website_id')->unsigned()->index()->change(); $table->foreign('website_id')->references('id')->on('websites')->onDelete('cascade'); }); Schema::table('certificate_scans', function (Blueprint $table) { - $table->integer('website_id')->unsigned()->change(); + $table->bigInteger('website_id')->unsigned()->index()->change(); $table->foreign('website_id')->references('id')->on('websites')->onDelete('cascade'); }); Schema::table('crawled_pages', function (Blueprint $table) { - $table->integer('website_id')->unsigned()->change(); + $table->bigInteger('website_id')->unsigned()->index()->change(); $table->foreign('website_id')->references('id')->on('websites')->onDelete('cascade'); }); }