Appearance
public.configuration
Description
Entidade que representa as configurações globais do sistema
Columns
| Name | Type | Default | Nullable | Children | Parents | Comment |
|---|---|---|---|---|---|---|
| id | uuid | false | Chave primária da tabela de configuração singleton | |||
| manual_storage_object_id | uuid | true | public.storage_object | ID do objeto de armazenamento (manual do sistema) |
Constraints
| Name | Type | Definition |
|---|---|---|
| fk_configuration_on_manual_storage_object | FOREIGN KEY | FOREIGN KEY (manual_storage_object_id) REFERENCES storage_object(id) |
| pk_configuration | PRIMARY KEY | PRIMARY KEY (id) |
| uc_configuration_manual_storage_object | UNIQUE | UNIQUE (manual_storage_object_id) |
Indexes
| Name | Definition |
|---|---|
| pk_configuration | CREATE UNIQUE INDEX pk_configuration ON public.configuration USING btree (id) |
| uc_configuration_manual_storage_object | CREATE UNIQUE INDEX uc_configuration_manual_storage_object ON public.configuration USING btree (manual_storage_object_id) |
Relations
Generated by tbls