Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/structure.sql')
-rw-r--r--db/structure.sql6
1 files changed, 5 insertions, 1 deletions
diff --git a/db/structure.sql b/db/structure.sql
index 93e3ad40756..6842d465ce2 100644
--- a/db/structure.sql
+++ b/db/structure.sql
@@ -17968,7 +17968,11 @@ CREATE TABLE member_roles (
read_code boolean DEFAULT false,
read_vulnerability boolean DEFAULT false NOT NULL,
admin_vulnerability boolean DEFAULT false NOT NULL,
- read_dependency boolean DEFAULT false NOT NULL
+ read_dependency boolean DEFAULT false NOT NULL,
+ name text DEFAULT 'Custom'::text NOT NULL,
+ description text,
+ CONSTRAINT check_4364846f58 CHECK ((char_length(description) <= 255)),
+ CONSTRAINT check_9907916995 CHECK ((char_length(name) <= 255))
);
CREATE SEQUENCE member_roles_id_seq