From d6fe6f8cb28b18dfda201e52a41a249b0374ad7c Mon Sep 17 00:00:00 2001 From: Sandor Horvath Date: Fri, 20 Dec 2019 15:39:05 +0000 Subject: [PATCH] url changed to text in migration --- database/migrations/audits.stub | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/migrations/audits.stub b/database/migrations/audits.stub index 0e72ce4..12db780 100644 --- a/database/migrations/audits.stub +++ b/database/migrations/audits.stub @@ -19,9 +19,9 @@ class CreateFoxproAuditsTable extends Migration Schema::create(static::TABLE_NAME, function (Blueprint $table) { $table->bigIncrements('id'); $table->unsignedInteger('user_id')->nullable()->index(); - $table->text('query')->nullable(); + $table->longText('query')->nullable(); $table->ipAddress('ip')->nullable(); - $table->string('url')->nullable(); + $table->text('url')->nullable(); $table->string('user_agent')->nullable(); $table->timestamps(); });