36 lines
832 B
PHP
36 lines
832 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
public function up(): void
|
|
{
|
|
Schema::create('users', function (Blueprint $table) {
|
|
$table->id();
|
|
|
|
$table->string('name');
|
|
$table->string('username')->unique();
|
|
$table->string('email')->unique();
|
|
|
|
$table->string('password');
|
|
|
|
$table->enum('role', ['admin', 'user'])->default('user');
|
|
|
|
$table->string('otp_code')->nullable();
|
|
$table->dateTime('otp_expired')->nullable();
|
|
|
|
|
|
$table->rememberToken();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('users');
|
|
}
|
|
};
|