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

migration.V6__bq_snapshot_tracker.sql Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
CREATE TABLE `bq_snapshot_tracker` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `pipeline_id` varchar(256) NOT NULL,
  `committed` varchar(256),
  `uncommitted` varchar(256),
  `created_ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `is_deleted` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `pipeline_id` (`pipeline_id`)
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy