server/sql/updates/0.10/5228_mangos_gameobject_scripts.sql
freghar 95840fd2c3 Removed trailing whitespaces and CRLFs
With /contrib/ and /dep/ excluded.

Signed-off-by: freghar <compmancz@gmail.com>
2008-10-22 11:52:03 +02:00

13 lines
526 B
SQL

DROP TABLE IF EXISTS `gameobject_scripts`;
CREATE TABLE `gameobject_scripts` (
`id` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0',
`delay` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0',
`command` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0',
`datalong` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0',
`datalong2` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0',
`datatext` TEXT NOT NULL ,
`x` FLOAT NOT NULL DEFAULT '0',
`y` FLOAT NOT NULL DEFAULT '0',
`z` FLOAT NOT NULL DEFAULT '0',
`o` FLOAT NOT NULL DEFAULT '0'
) ENGINE = MYISAM DEFAULT CHARSET = utf8;