Skip to content

Commit

Permalink
Remove 'AS integer' lines from structure.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitystorm committed Nov 29, 2023
1 parent 3b661f9 commit e3d1fc9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
12 changes: 0 additions & 12 deletions db/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,6 @@ CREATE TABLE public.changeset_comments (
--

CREATE SEQUENCE public.changeset_comments_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -445,7 +444,6 @@ CREATE TABLE public.client_applications (
--

CREATE SEQUENCE public.client_applications_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -871,7 +869,6 @@ CREATE TABLE public.issue_comments (
--

CREATE SEQUENCE public.issue_comments_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -911,7 +908,6 @@ CREATE TABLE public.issues (
--

CREATE SEQUENCE public.issues_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -1024,7 +1020,6 @@ CREATE TABLE public.note_comments (
--

CREATE SEQUENCE public.note_comments_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -1060,7 +1055,6 @@ CREATE TABLE public.notes (
--

CREATE SEQUENCE public.notes_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -1206,7 +1200,6 @@ CREATE TABLE public.oauth_nonces (
--

CREATE SEQUENCE public.oauth_nonces_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -1285,7 +1278,6 @@ CREATE TABLE public.oauth_tokens (
--

CREATE SEQUENCE public.oauth_tokens_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -1320,7 +1312,6 @@ CREATE TABLE public.redactions (
--

CREATE SEQUENCE public.redactions_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -1395,7 +1386,6 @@ CREATE TABLE public.reports (
--

CREATE SEQUENCE public.reports_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -1442,7 +1432,6 @@ CREATE TABLE public.user_blocks (
--

CREATE SEQUENCE public.user_blocks_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down Expand Up @@ -1487,7 +1476,6 @@ CREATE TABLE public.user_roles (
--

CREATE SEQUENCE public.user_roles_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
Expand Down
1 change: 0 additions & 1 deletion script/normalise-structure
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
/^SET default_with_oids /d
/^SET default_table_access_method /d
/^SET idle_in_transaction_session_timeout /d
/^ AS integer$/d

s/ IMMUTABLE / /

0 comments on commit e3d1fc9

Please sign in to comment.