erp/database/migrations/2014_10_12_000000_create_users_table.php

42 lines
1.0 KiB
PHP
Raw Normal View History

2022-07-23 17:07:13 +08:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
2022-08-09 16:56:52 +08:00
Schema::defaultStringLength(191);
2022-07-23 17:07:13 +08:00
Schema::create('users', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name');
$table->string('email')->nullable()->unique();
2022-07-23 17:07:13 +08:00
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
2022-07-28 13:46:08 +08:00
$table->string('api_token', 80)->unique()->nullable(false);
2022-08-02 11:43:46 +08:00
$table->softDeletes();
2022-07-23 17:07:13 +08:00
$table->rememberToken();
$table->timestamps();
2022-08-09 16:56:52 +08:00
// 索引
$table->unique('name');
2022-07-23 17:07:13 +08:00
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}