dbfdg id(); $table->string('name'); $table->text('address'); $table->string('city'); $table->string('city_zip'); $table->integer('created_by')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('warehouses'); } }