Merge branch 'frost' of https://github.com/Aevann1/Drama into frost

remotes/1693045480750635534/spooky-22
Aevann1 2022-01-29 04:01:18 +02:00
commit e27c6eaf24
1 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,8 @@ CREATE TABLE public.alts (
id integer NOT NULL,
user1 integer NOT NULL,
user2 integer NOT NULL,
is_manual boolean DEFAULT false
is_manual boolean DEFAULT false,
CONSTRAINT alts_cant_be_equal CHECK ((user1 <> user2))
);