integer('id')->primary('hops_pkey'); $table->text('name'); $table->char('alpha_acid', 9); $table->boolean('bitter')->nullable(); $table->boolean('aroma')->nullable(); $table->text('profile')->nullable(); $table->char('beta_acid', 9)->nullable(); $table->char('myrcene', 9)->nullable(); $table->char('humulene', 9)->nullable(); $table->char('total_oil', 9)->nullable(); $table->char('cohumulone', 9)->nullable(); $table->char('farnesene', 9)->nullable(); $table->char('caryophyllene', 9)->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('hops'); } }