mysql/core_person_get_action_type.sql
authorAlan Knowles <alan@roojs.com>
Tue, 11 Oct 2016 03:06:43 +0000 (11:06 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 11 Oct 2016 03:06:43 +0000 (11:06 +0800)
mysql/core_person_get_action_type.sql

index dcd3680..ddf77ec 100644 (file)
@@ -1,13 +1,13 @@
 
-DROP FUNCTION IF EXISTS person_get_action_type;
+DROP FUNCTION IF EXISTS core_person_get_action_type;
 
 DELIMITER $$
-CREATE FUNCTION person_get_action_type(in_id INT(11))  RETURNS VARCHAR(32) DETERMINISTIC
+CREATE FUNCTION core_person_get_action_type(in_id INT(11))  RETURNS VARCHAR(32) DETERMINISTIC
     BEGIN
         
         DECLARE v_ret VARCHAR(32);
         SET v_ret= '';
-        SELECT action_type INTO v_ret  FROM Person WHERE id = in_id  LIMIT 1;
+        SELECT action_type INTO v_ret  FROM core_person WHERE id = in_id  LIMIT 1;
         RETURN v_ret;
     END $$
 DELIMITER ;