Add database migration
This commit is contained in:
parent
170488dc9f
commit
2979edace2
1 changed files with 34 additions and 0 deletions
|
@ -0,0 +1,34 @@
|
||||||
|
<?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');
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue