remotes/1693045480750635534/spooky-22
Aevann1 2022-01-29 02:00:01 +00:00
parent 70813c686a
commit 4537dc293b
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))
);