-
Notifications
You must be signed in to change notification settings - Fork 33
Document tables
Daniel Marín edited this page Jul 8, 2026
·
2 revisions
Document tables consist of a table doc_type with definition of possible document types, table doc, where all the necessary data about documents is stored and relation tables, that saves the id of a document and id of a feature, work or visit with which it is related.
| Column name | Data type | Description | Example |
|---|---|---|---|
| id | character varying(30) | Id | Raport_0123 |
| doc_type | character varying(30) | Document type related to the catalog value, defined on doc_type | WORK RAPPORT |
| path | character varying(512) | Location of a document (link) | https://github.com/giswater/giswater/blob/master-2.1/legal/Readme.txt |
| observ | character varying(512) | Description | |
| user_name | character varying(50) | Name of user that inserted document | user1 |
| tstamp | timestamp without time zone | Date and time of inserting document |
- doc_x_arc
- doc_x_connec
- doc_x_node
- doc_x_psector
- doc_x_visit
- doc_x_workcat


