mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
check in migration files for mysql
This commit is contained in:
11
OpenSim/Data/MySQL/Resources/001_AssetStore.sql
Normal file
11
OpenSim/Data/MySQL/Resources/001_AssetStore.sql
Normal 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';
|
||||
Reference in New Issue
Block a user