- Menghapus migration `create_currencies_table` dan `create_label_name_inspeksi_table` yang tidak digunakan. - Menambahkan `timestamps` dan `softDeletes` pada beberapa tabel untuk peningkatan konsistensi dan fitur auditing. - Mengubah `authorized_status` dari wajib menjadi nullable di beberapa tabel untuk fleksibilitas data.
41 lines
1.2 KiB
PHP
41 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('denah', function (Blueprint $table) {
|
|
$table->id();
|
|
// Foreign key to permohonan table
|
|
$table->unsignedBigInteger('permohonan_id');
|
|
$table->foreign('permohonan_id')->references('id')->on('permohonan');
|
|
|
|
$table->string('foto_denah');
|
|
$table->string('luas');
|
|
$table->unsignedBigInteger('jenis_jaminan_id');
|
|
$table->char('authorized_status', 1)->nullable();
|
|
$table->timestamps();
|
|
$table->timestamp('authorized_at')->nullable();
|
|
$table->unsignedBigInteger('authorized_by')->nullable();
|
|
$table->softDeletes();
|
|
$table->unsignedBigInteger('created_by')->nullable();
|
|
$table->unsignedBigInteger('updated_by')->nullable();
|
|
$table->unsignedBigInteger('deleted_by')->nullable();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('denah');
|
|
}
|
|
};
|