unsignedBigInteger('id'); $table->string('beer'); $table->integer('rating'); $table->string('country'); $table->string('type'); $table->string('review')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('beers'); } }