Commit 4283b8a4 authored by Krasimir Angelov's avatar Krasimir Angelov

Update db/structure.sql

Add CONSTRAINT check_4be7a006fd CHECK that was missed in
https://gitlab.com/gitlab-org/gitlab/-/merge_requests/45748
parent 36d93ef2
......@@ -8977,7 +8977,8 @@ CREATE TABLE analytics_devops_adoption_segments (
name text NOT NULL,
last_recorded_at timestamp with time zone,
created_at timestamp with time zone NOT NULL,
updated_at timestamp with time zone NOT NULL
updated_at timestamp with time zone NOT NULL,
CONSTRAINT check_4be7a006fd CHECK ((char_length(name) <= 255))
);
CREATE SEQUENCE analytics_devops_adoption_segments_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