|
|
|
<?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('petis', function (Blueprint $table) {
|
|
|
|
$table->id();
|
|
|
|
$table->foreignId('tipe_peti_id')->nullable()->constrained('type_petis'); // untuk inputan tipe peti
|
|
|
|
$table->string('warna', 50); // untuk inputan warna peti
|
|
|
|
$table->foreignId('customer_id')->nullable()->constrained('customers')->onDelete('cascade'); // untuk inputan customer
|
|
|
|
$table->foreignId('warehouse_id')->nullable()->constrained('m_warehouses'); // untuk inputan Gudang
|
|
|
|
$table->foreignId('t_warehouse_id')->nullable()->constrained('m_warehouses'); // untuk proses semua perubahan gudang peti
|
|
|
|
$table->foreignId('kondisipeti_id')->nullable()->constrained('kondisi_petis'); // untuk inputan kondisi peti
|
|
|
|
$table->integer('jumlah')->nullable(); // untuk inputan jumlah peti
|
|
|
|
$table->date('date_pembuatan', 100)->nullable(); // untuk inputan tanggal pembuatan
|
|
|
|
$table->integer('packing_no'); // untuk pembuatan packing no otomatis
|
|
|
|
$table->string('fix_lot', 100); // untuk proses pembuatan fixlot otomatis
|
|
|
|
$table->string('status', 50)->default('AKTIF'); // untuk pembuatan status peti otomatis menjadi aktif
|
|
|
|
$table->boolean('status_isi')->nullable(); // untuk pembuatan status isi peti 1 = isi, 0 = kosong
|
|
|
|
$table->timestamps();
|
|
|
|
$table->softDeletes();
|
|
|
|
$table->string('created_by', 200)->nullable();
|
|
|
|
$table->string('updated_by', 200)->nullable();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
|
|
|
public function down(): void
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('petis');
|
|
|
|
}
|
|
|
|
};
|