mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +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 ; |