erp/database/migrations/2014_10_12_000000_create_users_table.php

39 lines
920 B
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()
{
Schema::create('users', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name');
$table->string('email')->unique();
$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();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}