Postgres database: iondb
Postgres table: rundb_sampleattribute
Sample Attribute data model.
Created when the user creates a sample attribute.
| Field | Type | Description |
|---|---|---|
| creationDate | Date (with time) | creationDate |
| creator | User (ForeignKey) | the related auth.User row |
| dataType | SampleAttributeDataType (ForeignKey) | the related rundb.SampleAttributeDataType row |
| description | String (up to 1024) | description |
| displayedName | String (up to 127) | displayedName |
| id | Integer | ID |
| isActive | Boolean (Either True or False) | isActive |
| isMandatory | Boolean (Either True or False) | isMandatory |
| lastModifiedDate | Date (with time) | lastModifiedDate |
| lastModifiedUser | User (ForeignKey) | the related auth.User row |