13 lines
466 B
MySQL
13 lines
466 B
MySQL
|
|
-- ============================================
|
||
|
|
-- 此文件由 Meoo Cloud 自动生成,请勿修改
|
||
|
|
-- This file is auto-generated by Meoo Cloud, DO NOT MODIFY
|
||
|
|
-- ============================================
|
||
|
|
|
||
|
|
|
||
|
|
DROP TRIGGER IF EXISTS trigger_auto_import_finished_product ON washing_plan_completions;
|
||
|
|
CREATE TRIGGER trigger_auto_import_finished_product
|
||
|
|
BEFORE INSERT ON washing_plan_completions
|
||
|
|
FOR EACH ROW
|
||
|
|
EXECUTE FUNCTION auto_import_to_finished_products();
|
||
|
|
|