erp/database/migrations/2014_10_12_000000_create_users_table.php

44 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()
{
2023-04-17 18:56:59 +08:00
if (Schema::hasTable('users')) {
return;
}
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');
2022-08-18 11:22:27 +08:00
$table->string('name')->unique();
2022-08-22 17:47:17 +08:00
$table->string('email')->nullable(true);
2022-07-23 17:07:13 +08:00
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->string('api_token', 80)->unique();
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
// 索引
2022-07-23 17:07:13 +08:00
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}