pixelfed/database/migrations/2019_01_11_005556_update_pr...

35 lines
862 B
PHP
Raw Normal View History

2019-01-11 03:19:39 +00:00
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class UpdateProfilesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('profiles', function (Blueprint $table) {
$table->boolean('unlisted')->default(false)->index()->after('bio');
$table->boolean('cw')->default(false)->index()->after('unlisted');
$table->boolean('no_autolink')->default(false)->index()->after('cw');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
2019-02-13 20:00:36 +00:00
Schema::table('profiles', function (Blueprint $table) {
2021-06-01 05:26:40 +00:00
$table->dropColumn(['unlisted','cw','no_autolink']);
2019-02-13 20:00:36 +00:00
});
2019-01-11 03:19:39 +00:00
}
}