Files
Website/database/migrations/2014_10_12_000000_create_users_table.php
2023-05-24 21:33:17 +00:00

37 lines
971 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('username')->unique();
$table->string('password')->nullable();
$table->boolean('enabled')->default(true);
$table->string('first_name');
$table->string('last_name');
$table->string('email');
$table->timestamp('email_verified_at')->nullable();
$table->string('phone')->nullable();
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users');
}
};