add table creation sql

This commit is contained in:
bootswithdefer
2010-11-01 10:13:01 -07:00
parent 1b89d71170
commit 19e18dd3ee

9
create.sql Executable file
View File

@ -0,0 +1,9 @@
CREATE TABLE `blocks` (
`date` datetime NOT NULL default '0000-00-00 00:00:00',
`player` varchar(32) NOT NULL default '-',
`action` varchar(32) NOT NULL default 'none',
`type` int(11) NOT NULL default '0',
`x` int(11) NOT NULL default '0',
`y` int(11) NOT NULL default '0',
`z` int(11) NOT NULL default '0',
KEY `coords` (`y`, `x`, `z`));