EXPERIMENT_BASE
Description
This table stores the base information for each experiment.
Columns
| Column Name | Data Type | Description |
| ID | bigint | The unique identifier for each record in the table. |
| DEPLOYED_TO_BUSINESS_AS_USUAL | bit | Indicates whether the experiment has been deployed to business as usual. |
| DESCRIPTION | longtext | The description of the experiment. |
| ITERATION_LENGTH_IN_DAYS | smallint | The length of each iteration of the experiment in days. |
| MAX_NUM_ITERATIONS | smallint | The maximum number of iterations for the experiment. |
| NAME | varchar | The name of the experiment. |
| START_DATE_TIME_INCLUSIVE_IT_0 | datetime | The start date and time of the first iteration of the experiment. |
| STATUS | varchar | The status of the experiment. |
Constraints
- PRIMARY KEY (ID)