mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
838 B
PHTML
35 lines
838 B
PHTML
6 years ago
|
<?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()
|
||
|
{
|
||
|
$table->dropColumn('unlisted');
|
||
|
$table->dropColumn('cw');
|
||
|
$table->dropColumn('no_autolink');
|
||
|
}
|
||
|
}
|