mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-30 13:05:34 +08:00
11 lines
235 B
Plaintext
11 lines
235 B
Plaintext
DELIMITER $$
|
|
CREATE EVENT ome_log_partition_event
|
|
ON SCHEDULE EVERY 1 DAY
|
|
STARTS '2025-02-05 00:00:00' -- 根据需要调整开始时间
|
|
DO
|
|
BEGIN
|
|
CALL ome_log_add_partition();
|
|
CALL ome_log_remove_partition();
|
|
END$$
|
|
|
|
DELIMITER ; |