Skip to content

Commit

Permalink
url changed to text in migration
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandor Horvath committed Dec 20, 2019
1 parent 44872d6 commit d6fe6f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/migrations/audits.stub
Expand Up @@ -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();
});
Expand Down

0 comments on commit d6fe6f8

Please sign in to comment.