Commit 88f6ad2e authored by Mayra Cabrera's avatar Mayra Cabrera

Merge branch 'sy-fix-schema-order' into 'master'

Fix schema order for published incidents

See merge request gitlab-org/gitlab!30872
parents 71400cff 7d475698
......@@ -6183,9 +6183,9 @@ ALTER SEQUENCE public.sprints_id_seq OWNED BY public.sprints.id;
CREATE TABLE public.status_page_published_incidents (
id bigint NOT NULL,
issue_id bigint NOT NULL,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
updated_at timestamp with time zone NOT NULL,
issue_id bigint NOT NULL
);
CREATE SEQUENCE public.status_page_published_incidents_id_seq
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment