boolean('pictures_downloaded')->default(false); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('homes', static function (Blueprint $table) { $table->dropColumn('pictures_downloaded'); }); } }