Games tab on admin page working

This commit is contained in:
2025-03-04 21:14:22 -05:00
parent dd4480cf4e
commit f528cbaa2b
25 changed files with 631 additions and 25 deletions

View File

@@ -0,0 +1,11 @@
CREATE TABLE IF NOT EXISTS raid_builder.game(
game_id uuid PRIMARY KEY,
game_name text UNIQUE NOT NULL,
game_icon text,
modified_by uuid,
modified_date timestamptz,
created_by uuid NOT NULL,
created_date timestamptz NOT NULL
);
GRANT ALL ON TABLE raid_builder.game TO raid_builder;