public.app_status¶
Description¶
Columns¶
| Name | Type | Default | Nullable | Children | Parents | Comment |
|---|---|---|---|---|---|---|
| id | boolean | true | false | |||
| is_maintenance | boolean | false | false | |||
| maintenance_message | text | ''::text | false | |||
| updated_at | timestamp without time zone | now() | false |
Constraints¶
| Name | Type | Definition |
|---|---|---|
| app_status_id_not_null | n | NOT NULL id |
| app_status_is_maintenance_not_null | n | NOT NULL is_maintenance |
| app_status_maintenance_message_not_null | n | NOT NULL maintenance_message |
| app_status_updated_at_not_null | n | NOT NULL updated_at |
| single_row | CHECK | CHECK ((id = true)) |
| app_status_pkey | PRIMARY KEY | PRIMARY KEY (id) |
Indexes¶
| Name | Definition |
|---|---|
| app_status_pkey | CREATE UNIQUE INDEX app_status_pkey ON public.app_status USING btree (id) |
Relations¶
Generated by tbls