Field | Description | Type | Null | Limits | Size | Key | Default | Authority | Source |
---|---|---|---|---|---|---|---|---|---|
ID | This is the unique ID for each Person. The values here should not be assigned by external programs. Instead it can either be ignored, or NULL can be inserted, and the database will automatically assign the next ID. | INT(10) unsigned auto_increment | Not Null | Primary Key | |||||
USERNAME | A unique user name for this person. | VARCHAR(15) | Not Null | ||||||
GIVEN_NAME | The given name of this Person. | VARCHAR(20) | |||||||
FAMILY_NAME | The family name of this Person. | VARCHAR(20) | |||||||
ADDITIONAL_NAMES | Any additional names or initials for this Person. | VARCHAR(20) | |||||||
NAME_SUFFIX | Any name suffixes for this person. | VARCHAR(20) | |||||||
EMAIL_ADDRESS | An e-mail address for this person. | VARCHAR(60) | |||||||
GROUP_NAME | This should probably be a set, not an enum. We may want to break this out into an entirely separate table with a mapping table. | ENUM("PI", "DPI", "PROJECT_MANAGER", "CO-I", "VALIDATOR", "TAG", "EPO", "PUB", "HIROC_STAFF", "OTHER") | |||||||
POSTAL_CODE | The postal code for this Person. | VARCHAR(10) | |||||||
COUNTRY | The country where this person lives. | VARCHAR(20) | |||||||
OCCUPATION | The occupation of this person. | VARCHAR(20) | |||||||
HIGHEST_GRADE_COMPLETED | The highest grade that this person has completed. This field is intended to represent kindergarten through graduate school. A zero indicates any grade less than first. First through high school are indicated by one through twelve. Undergraduate is thirteen, and graduate school is fourteen. | TINYINT(2) unsigned | |||||||
PASSWORD | The encrypted password for this person. This password should be encrypted by MySQL. | VARCHAR(40) | |||||||
AFFILIATION | The affiliation with a particular institution or body that this person has. | VARCHAR(80) | |||||||
PUBLIC_KEY | The public key for this person. | TEXT | |||||||
NOTE | Who adds this note? What is it for? | VARCHAR(200) | |||||||
LAST_UPDATE | This column records the last time that a record was updated. | TIMESTAMP |
Table Options:
Copyright (C) 2004 Arizona Board of Regents on behalf of the Planetary Image Research Laboratory, Lunar and Planetary Laboratory at the University of Arizona.
This page was generated from the XML HiCat Data Dictionary. $Name: $
Please send comments to: HiCat@pirlmail.lpl.arizona.edu .