66 lines
2.0 KiB
PHP
66 lines
2.0 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
|
|
{
|
|
// USERS TABLE
|
|
Schema::create('users', function (Blueprint $table) {
|
|
$table->id(); // Auto-increment primary key
|
|
|
|
// Custom customer ID like CID-2025-000001
|
|
$table->string('customer_id')->unique();
|
|
|
|
// Customer details
|
|
$table->string('customer_name');
|
|
$table->string('company_name');
|
|
$table->string('designation')->nullable();
|
|
$table->string('email')->unique();
|
|
$table->string('mobile_no');
|
|
$table->string('address')->nullable();
|
|
$table->string('pincode')->nullable();
|
|
$table->date('date')->nullable();
|
|
|
|
// Authentication fields
|
|
$table->timestamp('email_verified_at')->nullable();
|
|
$table->string('password')->nullable();
|
|
$table->rememberToken();
|
|
$table->timestamps();
|
|
});
|
|
|
|
// PASSWORD RESETS TABLE
|
|
Schema::create('password_reset_tokens', function (Blueprint $table) {
|
|
$table->string('email')->primary();
|
|
$table->string('token');
|
|
$table->timestamp('created_at')->nullable();
|
|
});
|
|
|
|
// SESSIONS TABLE
|
|
Schema::create('sessions', function (Blueprint $table) {
|
|
$table->string('id')->primary();
|
|
$table->foreignId('user_id')->nullable()->index();
|
|
$table->string('ip_address', 45)->nullable();
|
|
$table->text('user_agent')->nullable();
|
|
$table->longText('payload');
|
|
$table->integer('last_activity')->index();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('sessions');
|
|
Schema::dropIfExists('password_reset_tokens');
|
|
Schema::dropIfExists('users');
|
|
}
|
|
};
|