Skip to content
Snippets Groups Projects
Commit 04739dc8 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Datentyp für die URL in text geändert, um längere Suchwörter verarbeiten zu können.

parent f086df55
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
...@@ -16,7 +16,7 @@ class Usedurls extends Migration ...@@ -16,7 +16,7 @@ class Usedurls extends Migration
Schema::create('usedurls', function (Blueprint $table) { Schema::create('usedurls', function (Blueprint $table) {
$table->increments('id')->unique(); $table->increments('id')->unique();
$table->string('user_id'); $table->string('user_id');
$table->string('url'); $table->text('url');
$table->timestamp('created_at'); $table->timestamp('created_at');
$table->foreign('user_id')->references('id')->on('humanverification')->onDelete('cascade'); $table->foreign('user_id')->references('id')->on('humanverification')->onDelete('cascade');
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment