Table LS_CONFIGURATION

The configuration parameter table. All parameters are stored in this table except for the database connection parameters that, by necessity, are all stored in a special config file. The special configuration parameter 'liquidsite.version' contains the Liquid Site version number corresponding to this database.

Column Summary
NAME VARCHAR(50) NOT NULL
      The configuration parameter name.
VALUE VARCHAR(200) NOT NULL
      The configuration parameter value.

Index Summary
PRIMARY KEY (NAME)
      The configuration parameters are indexed by name.

Column Detail

NAME

NAME VARCHAR(50) NOT NULL
The configuration parameter name. The parameter names normally consist of ASCII alphanumeric characters with optional '.' characters separating different parts of the name. Please see separate documentation on configuration for more details on the configuration parameters available.

VALUE

VALUE VARCHAR(200) NOT NULL
The configuration parameter value. The parameter values are strings, possibly representing numbers or other types. Please see the separate documentation on configuration for the allowed values for any specific configuration parameter.

Index Detail

PRIMARY KEY

PRIMARY KEY (NAME)
The configuration parameters are indexed by name.