integer('id')->primary('breweries_pkey'); $table->text('name'); $table->text('place')->nullable(); $table->text('country'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('breweries'); } }