whole lot more moving

This commit is contained in:
Sean Dague
2008-04-02 15:24:31 +00:00
parent 35420b21a3
commit c52c68f314
67 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
CREATE TABLE `assets` (
`id` binary(16) NOT NULL,
`name` varchar(64) NOT NULL,
`description` varchar(64) NOT NULL,
`assetType` tinyint(4) NOT NULL,
`invType` tinyint(4) NOT NULL,
`local` tinyint(1) NOT NULL,
`temporary` tinyint(1) NOT NULL,
`data` longblob NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 1';