Feature #11 : Hubungan Penghuni Jaminan

This commit is contained in:
Daeng Deni Mardaeni
2024-08-14 16:50:25 +07:00
parent 6ea250470d
commit feff1d0316
10 changed files with 490 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
<?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('hubungan_penghuni_jaminan', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->timestamps();
$table->timestamp('authorized_at')->nullable();
$table->char('authorized_status', 1)->nullable();
$table->softDeletes();
$table->unsignedBigInteger('created_by')->nullable();
$table->unsignedBigInteger('updated_by')->nullable();
$table->unsignedBigInteger('deleted_by')->nullable();
$table->unsignedBigInteger('authorized_by')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('hubungan_penghuni_jaminan');
}
};