mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update migration
This commit is contained in:
parent
1031311f06
commit
9c5e6a7172
1 changed files with 5 additions and 1 deletions
|
@ -14,7 +14,9 @@ class AddCdnUrlToAvatarsTable extends Migration
|
||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
Schema::table('avatars', function (Blueprint $table) {
|
Schema::table('avatars', function (Blueprint $table) {
|
||||||
$table->string('cdn_url')->unique()->index()->nullable();
|
$table->string('cdn_url')->unique()->index()->nullable()->after('remote_url');
|
||||||
|
$table->unsignedInteger('size')->nullable()->after('cdn_url');
|
||||||
|
$table->boolean('is_remote')->nullable()->index()->after('cdn_url');
|
||||||
$table->dropColumn('thumb_path');
|
$table->dropColumn('thumb_path');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -28,6 +30,8 @@ class AddCdnUrlToAvatarsTable extends Migration
|
||||||
{
|
{
|
||||||
Schema::table('avatars', function (Blueprint $table) {
|
Schema::table('avatars', function (Blueprint $table) {
|
||||||
$table->dropColumn('cdn_url');
|
$table->dropColumn('cdn_url');
|
||||||
|
$table->dropColumn('size');
|
||||||
|
$table->dropColumn('is_remote');
|
||||||
$table->string('thumb_path')->nullable();
|
$table->string('thumb_path')->nullable();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue