You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.3 KiB
40 lines
1.3 KiB
<?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'); |
|
$table->string('warna', 50); |
|
$table->string('fix_lot', 100); |
|
$table->integer('packing_no'); |
|
$table->foreignId('customer_id')->nullable()->constrained('customers')->onDelete('cascade'); |
|
$table->integer('jumlah')->nullable(); |
|
$table->date('date_pembuatan', 100)->nullable(); |
|
$table->foreignId('warehouse_id')->nullable()->constrained('m_warehouses'); |
|
$table->foreignId('kondisipeti_id')->nullable()->constrained('kondisi_petis'); |
|
$table->string('status', 50)->default('AKTIF'); |
|
$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'); |
|
} |
|
};
|
|
|