mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-03-26 08:20:23 +01:00
Fixed Vcards on mysql
This commit is contained in:
parent
d7a17df087
commit
0581e0f952
@ -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');
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user