From 5b9db7db51f77fd085e0f4537249b6a226bb2a28 Mon Sep 17 00:00:00 2001 From: ziming Date: Sun, 18 May 2025 19:23:10 +0800 Subject: [PATCH] change to bigIncrements to better match laravel new conventions --- .../2019_02_25_231036_create_scheduled_notifications_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/2019_02_25_231036_create_scheduled_notifications_table.php b/migrations/2019_02_25_231036_create_scheduled_notifications_table.php index 9d9b0c0..205f268 100644 --- a/migrations/2019_02_25_231036_create_scheduled_notifications_table.php +++ b/migrations/2019_02_25_231036_create_scheduled_notifications_table.php @@ -14,7 +14,7 @@ class CreateScheduledNotificationsTable extends Migration public function up() { Schema::create(config('snooze.table'), function (Blueprint $table) { - $table->increments('id'); + $table->id(); $table->string('target_id')->nullable(); $table->string('target_type');