salix/db/routines/pbx/triggers/followme_beforeInsert.sql

9 lines
199 B
MySQL
Raw Permalink Normal View History

DELIMITER $$
CREATE OR REPLACE DEFINER=`root`@`localhost` TRIGGER `pbx`.`followme_beforeInsert`
BEFORE INSERT ON `followme`
FOR EACH ROW
BEGIN
CALL pbx.phone_isValid(NEW.phone);
END$$
DELIMITER ;