Files
mylesen/database/migrations/2024_08_26_215548_create_dokumens_table.php

30 lines
663 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('dokumens', function (Blueprint $table) {
$table->id();
$table->enum('jenis', ['lesen_penjaja', 'lesen_pasar_malam','lesen_perniagaan']);
$table->string('nama');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('dokumens');
}
};