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) {
|
Schema::table('users', function (Blueprint $table) {
|
||||||
$table->text('littlelink_description')->change();
|
$table->text('littlelink_description')->change();
|
||||||
});
|
});
|
||||||
|
|
||||||
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');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue