integer('id')->primary('grains_pkey'); $table->text('flavour')->nullable(); $table->text('name'); $table->char('lintner', 10)->nullable(); $table->char('windisch-kolbach', 10)->nullable(); $table->char('lovibond', 10)->nullable(); $table->text('colour')->nullable(); $table->integer('alternative')->nullable(); $table->char('ebc', 10)->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('grains'); } }