index Patch Schemas

This commit is contained in:
wish
2024-02-20 04:19:43 +11:00
parent 5bcfe25ede
commit c5905d74d4
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
BEGIN;
CREATE TABLE festa_submissions (
character_id int NOT NULL,
guild_id int NOT NULL,
trial_type int NOT NULL,
souls int NOT NULL,
timestamp timestamp with time zone NOT NULL
);
ALTER TABLE guild_characters DROP COLUMN souls;
ALTER TYPE festival_colour RENAME TO festival_color;
END;