removeColumn("icon"); $table->string("iconURL", 500)->nullable()->comment("Public link to icon"); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('apps', function (Blueprint $table) { $table->binary("icon")->nullable()->default(null)->comment("200x200 Image as Icon"); $table->removeColumn("iconURL"); }); // } }