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

com.naver.spring.batch.extension.hash-schema-mysql.sql Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
CREATE TABLE BATCHEX_ITEM_HASH (
  `seq` bigint(20) NOT NULL AUTO_INCREMENT,
  `item_key` varchar(200) NOT NULL,
  `item_hash` varchar(50) NOT NULL,
  `expiry` datetime NOT NULL,
  PRIMARY KEY (`seq`),
  UNIQUE KEY `item_key_UNIQUE` (`item_key`),
  KEY `expiry_IDX` (`expiry`)
) ENGINE=InnoDB;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy