Appearance
public.attachment_type
Description
Entidade que representa os tipos de anexo
Columns
| Name | Type | Default | Nullable | Children | Parents | Comment |
|---|---|---|---|---|---|---|
| id | uuid | false | Identificação do Tipo de Anexo | |||
| name | varchar(100) | false | Nome do Tipo de Anexo | |||
| description | varchar(1000) | true | Descrição do Tipo de Anexo | |||
| creation_date | timestamp without time zone | false | Data de Criação do Tipo de Anexo | |||
| status | varchar(25) | 'ACTIVE'::character varying | false | Apresenta se o registo está 'Activo' ou 'Inactivo' |
Constraints
| Name | Type | Definition |
|---|---|---|
| pk_attachment_type | PRIMARY KEY | PRIMARY KEY (id) |
| uc_attachment_type_name | UNIQUE | UNIQUE (name) |
Indexes
| Name | Definition |
|---|---|
| pk_attachment_type | CREATE UNIQUE INDEX pk_attachment_type ON public.attachment_type USING btree (id) |
| uc_attachment_type_name | CREATE UNIQUE INDEX uc_attachment_type_name ON public.attachment_type USING btree (name) |
Relations
Generated by tbls