|
Database Documentation |
The web host table. A web host is a fully qualified host name that is used on the web. Each host name can only pertain to a single domain, limiting the possible sites that can be created within that domain.
| Column Summary | |
|---|---|
| DESCRIPTION | VARCHAR(100) NOT NULLThe host description. |
| DOMAIN | VARCHAR(30) NOT NULLThe name of the domain the host belongs to. |
| NAME | VARCHAR(100) NOT NULLThe host name. |
| OPTIONS | VARCHAR(200) NOT NULLThe host options. |
| Index Summary | |
|---|---|
| PRIMARY KEY | (NAME)The hosts are indexed by the unique name. |
DOMAIN VARCHAR(30) NOT NULL
The name of the domain the host belongs to.
LS_DOMAIN.NAME
NAME VARCHAR(100) NOT NULL
The host name. The host name is the fully qualified host name, i.e. including any Internet domain name.
DESCRIPTION VARCHAR(100) NOT NULL
The host description. The host description may contain notes regarding the usage of the host.
OPTIONS VARCHAR(200) NOT NULL
The host options. The host options is a short list of name-value pairs. Each entry is separated by a ':' character, and the values are placed after a '=' character. An example option string could be "secure:transfer=255".
PRIMARY KEY (NAME)
The hosts are indexed by the unique name.
|
Database Documentation |