integer('id')->primary('beer_adjuncts_pkey'); $table->integer('beer_id'); $table->integer('adjunct_id'); $table->char('amount', 10); $table->char('timing', 10); $table->integer('alternative')->nullable(); $table->text('notes')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('beer_adjuncts'); } }