invoiceninja/database/migrations/2015_04_13_100333_add_notify_approved.php
2017-01-30 21:40:43 +02:00

31 lines
561 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
class AddNotifyApproved extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('users', function ($table) {
$table->boolean('notify_approved')->default(true);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('users', function ($table) {
$table->dropColumn('notify_approved');
});
}
}