COMPONENT_SETTINGS
This table represents settings contained within a given configuration component. There is a row in this table for each setting associated with the configuration component, all pointing to the same CONFIGURATION_COMPONENT.CONFIGURATION_COMPONENT_ID. The values are encrypted and not available outside of MVE.
|
Field Name |
Data Type |
Description |
|---|---|---|
|
SETTING_ID |
BIGINT |
The primary key. |
|
SETTING_NAME |
VARCHAR(255) |
The name of the setting. |
|
SETTING_VALUE |
VARCHAR(1280) |
The encrypted setting value. |
|
CONFIGURATION_COMPONENT_ID |
BIGINT |
The foreign key to CONFIGURATION_COMPONENT.CONFIG URATION_COMPONENT_ID. |
|
DISCRIMINATOR |
VARCHAR(255) |
The options are SIMPLE_SETTING and TABULAR_SETTING. |
|
TABULAR_SETTING_VALUE_ID |
BIGINT |
The foreign key to COMPONENT_TAB_SETTING_VALUE.TA BULAR_SETTING_VALUE_ID. |