Admin page raid group tab working
This commit is contained in:
14
db/1.0.0/7. createRaidGroup.sql
Normal file
14
db/1.0.0/7. createRaidGroup.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
CREATE TABLE IF NOT EXISTS raid_builder.raid_group(
|
||||
raid_group_id uuid PRIMARY KEY,
|
||||
game_id uuid REFERENCES raid_builder.game(game_id) NOT NULL,
|
||||
raid_group_name text NOT NULL,
|
||||
raid_group_icon text,
|
||||
|
||||
--Auditing
|
||||
modified_by uuid,
|
||||
modified_date timestamptz,
|
||||
created_by uuid NOT NULL,
|
||||
created_date timestamptz NOT NULL
|
||||
);
|
||||
|
||||
GRANT ALL ON TABLE raid_builder.raid_group TO raid_builder;
|
||||
Reference in New Issue
Block a user