firefly-iii/database/migrations/2016_06_16_000001_create_users_table.php

52 lines
1.3 KiB
PHP
Raw Normal View History

2016-06-17 07:06:38 -05:00
<?php
/**
* 2016_06_16_000001_create_users_table.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2017-03-25 07:41:17 -05:00
declare(strict_types=1);
2016-06-17 07:06:38 -05:00
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
/**
* Class CreateUsersTable
*/
class CreateUsersTable extends Migration
{
2017-03-25 07:41:17 -05:00
/**
* Reverse the migrations.
*/
public function down()
{
Schema::drop('users');
}
2016-06-17 07:06:38 -05:00
/**
* Run the migrations.
*
* @SuppressWarnings(PHPMD.ShortMethodName)
2016-06-17 07:06:38 -05:00
*/
public function up()
{
if (!Schema::hasTable('users')) {
Schema::create(
'users', function (Blueprint $table) {
$table->increments('id');
$table->timestamps();
$table->string('email', 255);
$table->string('password', 60);
$table->string('remember_token', 100)->nullable();
$table->string('reset', 32)->nullable();
2016-06-17 07:06:38 -05:00
$table->tinyInteger('blocked', false, true)->default('0');
$table->string('blocked_code', 25)->nullable();
}
);
}
}
}