mirror of
https://gitee.com/johng/gf
synced 2026-06-07 10:22:11 +08:00
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:
6
example/trace/grpc-with-db/sql.sql
Normal file
6
example/trace/grpc-with-db/sql.sql
Normal 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;
|
||||
Reference in New Issue
Block a user