sql.ot_revisions_backup.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activej-ot Show documentation
Show all versions of activej-ot Show documentation
Implementation of operational transformation technology. Allows building collaborative software systems.
CREATE TABLE IF NOT EXISTS `{backup}`
(
`id` bigint NOT NULL AUTO_INCREMENT,
`epoch` int NOT NULL,
`level` bigint NOT NULL,
`snapshot` longtext,
`timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE = InnoDB
DEFAULT CHARSET = utf8;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy