curators

-1 rows


Description

Table to hold curators with role

Columns

Column Type Size Nulls Auto Default Children Parents Comments
id serial 10 nextval('curators_id_seq'::regclass)
name_entity_id int4 10 null
role text 2147483647 'Curate'::text
created_at timestamp 29,6 now()
updated_at timestamp 29,6 now()

Indexes

Constraint Name Type Sort Column(s)
curators_pkey Primary key Asc id
curators_name_id_key Must be unique Asc name_entity_id

Check Constraints

Constraint Name Constraint
curators_role_check ((role = ANY (ARRAY['Curate'::text, 'Maintain'::text, 'Admin'::text])))

Relationships