Fixed Vcards on mysql

This commit is contained in:
Julian Prieber 2023-05-03 20:37:12 +02:00
parent d7a17df087
commit 0581e0f952
1 changed files with 3 additions and 1 deletions

View File

@ -19,6 +19,7 @@ class UpdateColumnsToTextType extends Migration
Schema::table('links', function (Blueprint $table) { Schema::table('links', function (Blueprint $table) {
$table->text('title')->change(); $table->text('title')->change();
$table->text('links')->nullable();
}); });
} }
@ -35,6 +36,7 @@ class UpdateColumnsToTextType extends Migration
Schema::table('links', function (Blueprint $table) { Schema::table('links', function (Blueprint $table) {
$table->string('title', 255)->change(); $table->string('title', 255)->change();
$table->dropColumn('links');
}); });
} }
} }