ANALYTICS_RUN
Description
This table stores information about analytics runs.
Columns
| Column Name | Data Type | Description |
| ID | bigint(20) | Primary key, unique identifier for each analytics run. |
| FEED_NAME | varchar(255) | The name of the feed. |
| RUN_ID | varchar(255) | The ID of the run. |
| STATUS | varchar(255) | The status of the run. |
| DRAFT_ID | bigint(20) | Foreign key referencing the ANALYTICS_RUN_DRAFT table. |
Foreign Key Relationships
- DRAFT_ID references ANALYTICS_RUN_DRAFT(ID)