increments('id'); $table->date('date'); $table->boolean('featured'); $table->string('image'); $table->string('thumbnail'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('posts'); } }