Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | ||
---|---|---|---|---|---|---|---|---|---|---|
id | serial | 10 | √ | nextval('certificate_id_seq'::regclass) |
|
|
||||
name | text | 2147483647 | null |
|
|
|||||
ca_cert | text | 2147483647 | null |
|
|
|||||
cert | text | 2147483647 | √ | null |
|
|
||||
key | text | 2147483647 | √ | null |
|
|
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
certificate_pkey | Primary key | Asc | id |
certificate_name_key | Must be unique | Asc | name |
Check Constraints
Constraint Name | Constraint |
---|---|
cert_key | (((key IS NULL) OR (cert IS NOT NULL))) |
certificate_ca_cert_check | ((NOT empty(ca_cert))) |
certificate_cert_check | ((NOT empty(cert))) |
certificate_key_check | ((NOT empty(key))) |
certificate_name_check | ((NOT empty(name))) |