Files
back-meditation/database/migrations/0001_01_01_000000_create_users_table.php
2025-04-24 23:28:22 +03:30

40 lines
1.1 KiB
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->id();
$table->string('first_name')->nullable();
$table->string('last_name')->nullable();
$table->string('email')->unique()->nullable();
$table->string('mobile')->unique()->nullable();
$table->string('password');
$table->string('avatar')->nullable();
$table->uuid('uuid')->unique();
$table->boolean('is_admin')->default(false);
$table->unsignedBigInteger('wallet')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users');
Schema::dropIfExists('password_reset_tokens');
Schema::dropIfExists('sessions');
}
};