mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
17 lines
576 B
SQL
17 lines
576 B
SQL
--
|
|
-- Table structure for table `button_scripts`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `button_scripts`;
|
|
CREATE TABLE `button_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;
|