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

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