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

migration.V18__migration_details.sql Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
CREATE TABLE `data_migrations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `type` varchar(50) NOT NULL,
  `failure_message` text,
  `status` varchar(50) NULL,
  `created_ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `is_deleted` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy