mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-08 21:15:05 -05:00
Fixing down migration
This commit is contained in:
committed by
Hammad Jutt
parent
bba8a7fd5d
commit
2bd0f12dcb
@@ -1,26 +1,23 @@
|
||||
|
||||
alter table "public"."quest_completion" drop constraint "quest_completion_quest_id_fkey";
|
||||
alter table "public"."quest_completion" drop constraint "quest_completion_completed_by_player_id_fkey";
|
||||
alter table "public"."quest_completion" drop constraint "quest_completion_status_fkey";
|
||||
|
||||
ALTER TABLE "public"."quest_completion" DROP COLUMN "status";
|
||||
|
||||
DROP TABLE "public"."QuestCompletionStatus";
|
||||
|
||||
DROP TABLE "public"."quest_completion";
|
||||
|
||||
alter table "public"."quest_skill" drop constraint "quest_skill_quest_id_fkey";
|
||||
alter table "public"."quest_skill" drop constraint "quest_skill_skill_id_fkey";
|
||||
|
||||
DROP TABLE "public"."quest_skill";
|
||||
|
||||
alter table "public"."quest" drop constraint "quest_created_by_player_id_fkey";
|
||||
alter table "public"."quest" drop constraint "quest_guild_id_fkey";
|
||||
alter table "public"."quest" drop constraint "quest_status_fkey";
|
||||
alter table "public"."quest" drop constraint "quest_repetition_fkey";
|
||||
|
||||
ALTER TABLE "public"."quest" DROP COLUMN "repetition";
|
||||
DROP TABLE "public"."quest";
|
||||
|
||||
DROP TABLE "public"."QuestRepetition";
|
||||
|
||||
alter table "public"."quest" drop constraint "quest_status_fkey";
|
||||
|
||||
ALTER TABLE "public"."quest" ALTER COLUMN "status" DROP NOT NULL;
|
||||
|
||||
ALTER TABLE "public"."quest" DROP COLUMN "status";
|
||||
|
||||
DROP TABLE "public"."QuestStatus";
|
||||
|
||||
DROP TABLE "public"."quest";
|
||||
DROP TABLE "public"."QuestCompletionStatus";
|
||||
|
||||
Reference in New Issue
Block a user