/** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('avatar_id'); }); Schema::table('avatars', function (Blueprint $table) { $table->dropForeign('avatars_mustache_id_foreign'); $table->dropForeign('avatars_amulet_id_foreign'); $table->dropForeign('avatars_hair_id_foreign'); $table->dropForeign('avatars_flag_id_foreign'); }); Schema::drop('mustaches'); chema::drop('amulets'); chema::drop('hairs'); chema::drop('flags'); }
/** * Reverse the migrations. * * @return void */ public function down() { chema::drop('delegatedealinfo'); }
/** * Reverse the migrations. * * @return void */ public function down() { chema::drop('product'); }