id(); $table->string('title'); $table->string('content'); $table->string('tags'); $table->string('authorId'); $table->integer('bookmarked'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('blogs'); } };