id(); $table->string('code')->unique(); $table->string('name'); $table->boolean('is_active')->default(true); $table->boolean('is_main')->default(false); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('warehouses'); } };