configuration

-1 rows


Description

The configuration table is used to store constants which are expected to change over the lifecycle of the application, or have different values in different environments. By making changes to in the database the behaviour of the application can be altered without requiring a full deployment.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
configuration_code varchar 10 null

A human readable code used to identify an configuration entry.

configuration_value varchar 250 null

The value of the configuration entry.

long_description varchar 250 null

The long description of the configuration entry.

active_ind bool 1 null

A boolean indicator to determine if the configuration_entry is active.

create_user_id varchar 32 null

The id of the user that created the configuration entry.

create_utc_timestamp timestamp 29,6 null

The timestamp when the configuration entry was created. The timestamp is stored in UTC with no Offset.

update_user_id varchar 32 null

The id of the user that updated the configuration entry.

update_utc_timestamp timestamp 29,6 null

The timestamp when the configuration entry was updated. The timestamp is stored in UTC with no Offset.

Indexes

Constraint Name Type Sort Column(s)
configuration_pk Primary key Asc configuration_code

Relationships