pixelfed/database/migrations/2021_01_25_011355_add_cdn_u...

37 lines
843 B
PHP
Raw Normal View History

2021-01-25 01:24:25 +00:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddCdnUrlToAvatarsTable extends Migration
{
2021-06-01 05:26:40 +00:00
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('avatars', function (Blueprint $table) {
$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');
});
}
2021-01-25 01:24:25 +00:00
2021-06-01 05:26:40 +00:00
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('avatars', function (Blueprint $table) {
$table->dropColumn(['cdn_url','size','is_remote']);
$table->string('thumb_path')->nullable();
});
}
2021-01-25 01:24:25 +00:00
}