add # for cron pattern that can ignore seconds, which makes the cron pattern running in minimum minute like linux crontab pattern (#3306)

This commit is contained in:
John Guo
2024-02-07 15:38:24 +08:00
committed by GitHub
parent 51326f3d02
commit 5307f0742e
34 changed files with 489 additions and 302 deletions

View File

@ -0,0 +1,6 @@
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
PRIMARY KEY (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;