PPM_FEATURE_TOGGLES
This table stores the information of features that can be turned on and off in the Feature Management platform.
Foreign Keys
This table does not have any foreign keys.
Column Descriptions
Column Name |
Null? |
Data Type |
Description |
---|---|---|---|
FEATURE_NAME |
NOT NULL |
VARCHAR2 |
Feature name |
STATUS |
NOT NULL |
VARCHAR2 |
The status of the feature under the INTRODUCED_VERSION |
DEFAULT_VALUE |
NOT NULL |
VARCHAR2 |
Whether the feature is turned on by default. On means turned on. Off means turned off. |
INTRODUCED_VERSION |
NOT NULL |
VARCHAR2 |
The version when this feature was introduced. |
PARENT_NAME |
NULLABLE |
VARCHAR2 |
The dependency of the feature. |
ONE_WAY |
NOT NULL |
VARCHAR2 |
Y: Once this feature is turned on, it cannot be turned off. N: The feature can be turned off after it is turned on. |
TAGS | NULLABLE | VARCHAR2 | The module to which the feature belongs. |
Indexes
Index Name |
Index Type |
Sequence |
Column Name |
---|---|---|---|
SYS_C0081751 |
UNIQUE |
1 |
FEATURE_NAME |