Table LS_HOST

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 NULL
      The host description.
DOMAIN VARCHAR(30) NOT NULL
      The name of the domain the host belongs to.
NAME VARCHAR(100) NOT NULL
      The host name.
OPTIONS VARCHAR(200) NOT NULL
      The host options.

Index Summary
PRIMARY KEY (NAME)
      The hosts are indexed by the unique name.

Column Detail

DOMAIN

DOMAIN VARCHAR(30) NOT NULL
The name of the domain the host belongs to.

Reference To:

LS_DOMAIN.NAME

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

DESCRIPTION VARCHAR(100) NOT NULL
The host description. The host description may contain notes regarding the usage of the host.

OPTIONS

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".

Index Detail

PRIMARY KEY

PRIMARY KEY (NAME)
The hosts are indexed by the unique name.