Commit 81e87cd5 authored by Adam Hegyi's avatar Adam Hegyi

Merge branch 'db-structure/45748-analytics_devops_adoption_segments-name-check' into 'master'

Update db/structure.sql with missing check constraint

See merge request gitlab-org/gitlab!46723
parents 167eeb4a 4283b8a4
......@@ -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