mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
<?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->uuid('id')->primary()->index();
|
|
$table->enum('role', ['admin', 'user'])->default('user');
|
|
$table->string('email')->unique()->index();
|
|
$table->timestamp('email_verified_at')->nullable();
|
|
$table->string('oauth_provider')->nullable();
|
|
$table->string('password')->nullable();
|
|
$table->text('two_factor_secret')->nullable();
|
|
$table->text('two_factor_recovery_codes')->nullable();
|
|
$table->rememberToken();
|
|
$table->timestamps();
|
|
$table->charset = 'utf8mb4';
|
|
$table->collation = 'utf8mb4_unicode_ci';
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('users');
|
|
}
|
|
}
|