Update User migration
This commit is contained in:
parent
53153660c5
commit
40c2053314
1 changed files with 4 additions and 1 deletions
|
@ -15,10 +15,13 @@ class CreateUsersTable extends Migration
|
||||||
{
|
{
|
||||||
Schema::create('users', function (Blueprint $table) {
|
Schema::create('users', function (Blueprint $table) {
|
||||||
$table->increments('id');
|
$table->increments('id');
|
||||||
$table->string('name');
|
$table->string('name')->nullable();
|
||||||
|
$table->string('username')->nullable()->unique()->index();
|
||||||
$table->string('email')->unique();
|
$table->string('email')->unique();
|
||||||
$table->string('password');
|
$table->string('password');
|
||||||
$table->rememberToken();
|
$table->rememberToken();
|
||||||
|
$table->boolean('is_admin')->default(false);
|
||||||
|
$table->timestamp('email_verified_at')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue