Skip to content

Commit

Permalink
Update 20240711184420_add_group_password_tables.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
vswarte authored Aug 11, 2024
1 parent f413070 commit cd554b1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
BEGIN;

ALTER TABLE bloodmessages
ADD COLUMN group_passwords TEXT[];
ADD COLUMN group_passwords TEXT[] NOT NULL;

ALTER TABLE bloodstains
ADD COLUMN group_passwords TEXT[];
ADD COLUMN group_passwords TEXT[] NOT NULL;

ALTER TABLE ghostdata
ADD COLUMN group_passwords TEXT[];
ADD COLUMN group_passwords TEXT[] NOT NULL;

COMMIT;

0 comments on commit cd554b1

Please sign in to comment.