index Patch Schemas

This commit is contained in:
wish
2024-02-20 04:19:43 +11:00
parent 5bcfe25ede
commit c5905d74d4
3 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
BEGIN;
ALTER TABLE IF EXISTS public.users ADD COLUMN op boolean;
CREATE TABLE public.bans
(
user_id integer NOT NULL,
expires timestamp with time zone,
PRIMARY KEY (user_id)
);
END;