coolify/database/migrations/2014_10_12_000000_create_users_table.php

33 lines
773 B
PHP
Raw Normal View History

2023-03-17 15:33:48 +01:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
2023-08-11 20:48:52 +02:00
return new class extends Migration
{
2023-03-17 15:33:48 +01:00
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
2023-05-25 13:23:42 +02:00
$table->id();
2023-06-15 09:24:24 +02:00
$table->string('name')->default('Anonymous');
2023-03-17 15:33:48 +01:00
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users');
}
};