Fixed mysql syntax errors caused by using wrong delimiter, thanks BlackCat0110

--HG--
branch : trunk
This commit is contained in:
Shauren
2010-07-31 11:06:21 +02:00
parent 2a371bb224
commit ab83f72d10

View File

@@ -15,7 +15,7 @@ ALTER TABLE `item_instance`
DELIMITER ||
-- Function to convert ints from unsigned to signed
DROP FUNCTION IF EXISTS `uint32toint32`;
DROP FUNCTION IF EXISTS `uint32toint32`||
CREATE FUNCTION `uint32toint32`(input INT(10) UNSIGNED) RETURNS INT(11) SIGNED DETERMINISTIC
BEGIN
RETURN input;