id(); $table->integer('authorId'); $table->string('comment'); $table->integer('blogId'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('comments'); } };