Add new migration

This commit is contained in:
Daniel Supernault 2018-10-17 18:11:51 -06:00
parent 58b9ef4dbb
commit 5b90bec1b3
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,34 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class UpdateFollowerTableAddRemoteFlags extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('followers', function (Blueprint $table) {
$table->boolean('local_profile')->default(true)->index()->after('following_id');
$table->boolean('local_following')->default(true)->index()->after('local_profile');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('followers', function (Blueprint $table) {
$table->dropColumn('local_profile');
$table->dropColumn('local_following');
});
}
}