All Downloads are FREE. Search and download functionalities are using the official Maven repository.

migration.V11__add_error_tracker.sql Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
CREATE TABLE `error_reports` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `pipeline_id` bigint(20) NOT NULL,
  `pipeline_run_id` bigint(20) NOT NULL,
  `report` mediumtext NOT NULL,
  `created_ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `refresh_ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_pipeline_run_id` (`pipeline_run_id`)
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy