uuid('id')->primary(); $table->bigInteger('id_incre')->default(1)->unsigned(); $table->foreignUuid('tipe_peti_id')->nullable()->constrained('type_petis')->onDelete('set null'); $table->string('warna', 50); $table->string('fix_lot', 100); $table->integer('packing_no'); $table->foreignUuid('customer_id')->nullable()->constrained('customers')->onDelete('set null'); $table->integer('jumlah')->nullable(); $table->date('date_pembuatan', 100)->nullable(); $table->foreignUuid('warehouse_id')->nullable()->constrained('m_warehouses')->onDelete('set null'); $table->foreignUuid('kondisipeti_id')->nullable()->constrained('kondisi_petis')->onDelete('set null'); $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'); } };