pintu2/database/migrations/2025_02_27_101412_create_lombas_table.php
Fiky Baharudin df22e0f14f
All checks were successful
Run Action to Production / run pull to sync on target message (push) Has been skipped
add button export to excel di pemutihan
2025-02-28 13:18:51 +07:00

28 lines
529 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('lombas', function (Blueprint $table) {
$table->id();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('lombas');
}
};