aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/XAssetStore.migrations
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-03-09 00:19:42 +0000
committerJustin Clark-Casey (justincc)2012-03-09 00:19:42 +0000
commit034c9d6bcc697a1b0e3702d4281235a0eb4d5d4e (patch)
treeb02db4d4281e1cb537479a98f42e99e978a9752f /OpenSim/Data/MySQL/Resources/XAssetStore.migrations
parentMove "change region" command into general category (diff)
parentminor: move some compression related var setup inside compression if/then switch (diff)
downloadopensim-SC_OLD-034c9d6bcc697a1b0e3702d4281235a0eb4d5d4e.zip
opensim-SC_OLD-034c9d6bcc697a1b0e3702d4281235a0eb4d5d4e.tar.gz
opensim-SC_OLD-034c9d6bcc697a1b0e3702d4281235a0eb4d5d4e.tar.bz2
opensim-SC_OLD-034c9d6bcc697a1b0e3702d4281235a0eb4d5d4e.tar.xz
Merge branch 'xassetservice'
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/XAssetStore.migrations')
-rw-r--r--OpenSim/Data/MySQL/Resources/XAssetStore.migrations27
1 files changed, 27 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/XAssetStore.migrations b/OpenSim/Data/MySQL/Resources/XAssetStore.migrations
new file mode 100644
index 0000000..d3cca5e
--- /dev/null
+++ b/OpenSim/Data/MySQL/Resources/XAssetStore.migrations
@@ -0,0 +1,27 @@
1# -----------------
2:VERSION 1
3
4BEGIN;
5
6CREATE TABLE `xassetsmeta` (
7 `id` char(36) NOT NULL,
8 `hash` binary(32) NOT NULL,
9 `name` varchar(64) NOT NULL,
10 `description` varchar(64) NOT NULL,
11 `asset_type` tinyint(4) NOT NULL,
12 `local` tinyint(1) NOT NULL,
13 `temporary` tinyint(1) NOT NULL,
14 `create_time` int(11) NOT NULL,
15 `access_time` int(11) NOT NULL,
16 `asset_flags` int(11) NOT NULL,
17 `creator_id` varchar(128) NOT NULL,
18 PRIMARY KEY (`id`)
19) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Version 1';
20
21CREATE TABLE `xassetsdata` (
22 `hash` binary(32) NOT NULL,
23 `data` longblob NOT NULL,
24 PRIMARY KEY (`hash`)
25) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Version 1';
26
27COMMIT; \ No newline at end of file