pixelfed/database/migrations/2018_10_18_035552_update_me...

37 wiersze
1006 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class UpdateMediaAddAltText extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('media', function (Blueprint $table) {
$table->string('license')->nullable()->after('filter_class');
$table->boolean('is_nsfw')->default(false)->after('user_id');
$table->tinyInteger('version')->default(1);
$table->boolean('remote_media')->default(false)->after('is_nsfw');
$table->string('remote_url')->nullable()->after('thumbnail_url');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('media', function (Blueprint $table) {
$table->dropColumn(['license','is_nsfw','version','remote_media','remote_url']);
});
}
}