salix/db/changes/10002-lent/00-ticketConfig.sql

5 lines
232 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS `vn`.`ticketConfig`;
CREATE TABLE `vn`.`ticketConfig` (`id` INT NOT NULL AUTO_INCREMENT, `scopeDays` TINYINT(3) NULL, PRIMARY KEY (`id`));
2019-05-01 17:23:05 +00:00
INSERT INTO `vn`.`ticketConfig` (`id`, `scopeDays`) VALUES ('1', '6');