* Update to Laravel 5.7 * Backport new Laravel 5.7 configurations * Replace karakus/laravel-cloudflare with monicahq/laravel-cloudflare
38 lines
837 B
PHP
38 lines
837 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class AddConfirmation extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('users', function (Blueprint $table) {
|
|
$table->boolean('confirmed')->default(false);
|
|
$table->string('confirmation_code')->nullable();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('users', function (Blueprint $table) {
|
|
$table->dropColumn('confirmed');
|
|
});
|
|
|
|
Schema::table('users', function (Blueprint $table) {
|
|
$table->dropColumn('confirmation_code');
|
|
});
|
|
}
|
|
}
|