From 307912aa13e2a6b18892b4e6fd3eb3fed0add845 Mon Sep 17 00:00:00 2001 From: Halil Cosdu Date: Wed, 8 May 2024 12:02:09 +0300 Subject: [PATCH] Bindings fixed. --- database/migrations/create_slower_table.php.stub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/create_slower_table.php.stub b/database/migrations/create_slower_table.php.stub index 678848f..8fc5ffe 100644 --- a/database/migrations/create_slower_table.php.stub +++ b/database/migrations/create_slower_table.php.stub @@ -11,7 +11,7 @@ return new class extends Migration Schema::create(config('slower.resources.table_name'), function (Blueprint $table) { $table->id(); $table->boolean('is_analyzed')->default(false)->index(); - $table->string('bindings'); + $table->longtext('bindings'); $table->longtext('sql'); $table->unsignedInteger('time')->index(); $table->string('connection');