Concept description
Contents |
[edit]
Description
"Descriptions" in OpenMRS refer generically to all the various ways people describe a given concept. Descriptions have one to many different locales (english, french).
[edit]
Attributes
| Column Name | Type | Default | Description | |
|---|---|---|---|---|
| | concept_description_id | int | Unique key for this table. | |
| | concept_id concept.concept_id | int | Reference back to concept which is being described. | |
| | description | text | Actual description for a given concept. Well designed concepts have long, fully descriptive definitions. | |
| | locale | varchar(50) | Locale of name. List of possible values described here. | |
| | creator users.user_id | int | User who created description. | |
| | date_created | datetime | 0000-00-00 00:00:00 | Date the description was created. |
| changed_by users.user_id | int | NULL | User who last changed the description. | |
| date_changed | datetime | NULL | Date the description was last changed. | |
| | voided | bit | It's true if desscription has been terminated for use in the system. | |
| voided_by users.user_id | int | NULL | User who terminated the description. | |
| date_voided | datetime | 0000-00-00 00:00:000 | Date the description was voided. | |
| void_reason | varchar (255) | NULL | Reason why the description was voided. | |
| | ||||
