Skip to content

Commit

Permalink
Merge pull request #61 from MikeIsAStar/correct-several-issues-within…
Browse files Browse the repository at this point in the history
…-the-database-schema

Correct several issues within the database schema
  • Loading branch information
mkwcat authored Aug 20, 2024
2 parents 381c85a + 9943e88 commit f7bfafe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ALTER TABLE ONLY public.users
ADD IF NOT EXISTS ban_reason character varying,
ADD IF NOT EXISTS ban_reason_hidden character varying,
ADD IF NOT EXISTS ban_moderator character varying,
ADD IF NOT EXISTS ban_tos boolean
ADD IF NOT EXISTS ban_tos boolean;


ALTER TABLE public.users OWNER TO wiilink;
Expand Down Expand Up @@ -83,7 +83,7 @@ ALTER TABLE ONLY public.users ALTER COLUMN profile_id SET DEFAULT nextval('publi
-- Set the profile_id start point to 1'000'000'000
--

ALTER SEQUENCE users_profile_id_seq RESTART WITH 1000000000;
ALTER SEQUENCE public.users_profile_id_seq RESTART WITH 1000000000;

--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: wiilink
Expand Down

0 comments on commit f7bfafe

Please sign in to comment.