id(); $table->string('code')->unique(); $table->string('name'); $table->text('location')->nullable(); $table->text('description')->nullable(); $table->boolean('is_active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('warehouses'); } };