49 lines
1.2 KiB
PHP
49 lines
1.2 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('auth_customers', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->timestamps();
|
|
|
|
$table->softDeletes();
|
|
|
|
$table->string('name');
|
|
$table->string('username')->unique();
|
|
$table->string('email')->unique();
|
|
$table->timestamp('email_verified_at')->nullable();
|
|
$table->string('password');
|
|
$table->rememberToken();
|
|
|
|
$table->enum('customer_type', ['individual', 'company']);
|
|
|
|
$table->string('nib')->nullable();
|
|
$table->string('npwp')->nullable();
|
|
|
|
$table->string('address')->nullable();
|
|
$table->string('phone_no')->nullable();
|
|
|
|
$table->string('pic')->nullable();
|
|
|
|
$table->boolean('is_active')->default(false);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('auth_customers');
|
|
}
|
|
};
|