diff options
author | Sean Dague | 2008-06-12 14:44:52 +0000 |
---|---|---|
committer | Sean Dague | 2008-06-12 14:44:52 +0000 |
commit | 4387744a78ec9ce098a818dbf9b04cc3704a13f6 (patch) | |
tree | 85e44a986de66a316f1d75e5066b726418840b4e /OpenSim/Data/MySQL/Resources/001_AssetStore.sql | |
parent | * Insulate maptile volume draw routine against TextureEntry oddities. (diff) | |
download | opensim-SC-4387744a78ec9ce098a818dbf9b04cc3704a13f6.zip opensim-SC-4387744a78ec9ce098a818dbf9b04cc3704a13f6.tar.gz opensim-SC-4387744a78ec9ce098a818dbf9b04cc3704a13f6.tar.bz2 opensim-SC-4387744a78ec9ce098a818dbf9b04cc3704a13f6.tar.xz |
check in migration files for mysql
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/001_AssetStore.sql')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/001_AssetStore.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/001_AssetStore.sql b/OpenSim/Data/MySQL/Resources/001_AssetStore.sql new file mode 100644 index 0000000..2c750fe --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/001_AssetStore.sql | |||
@@ -0,0 +1,11 @@ | |||
1 | CREATE TABLE `assets` ( | ||
2 | `id` binary(16) NOT NULL, | ||
3 | `name` varchar(64) NOT NULL, | ||
4 | `description` varchar(64) NOT NULL, | ||
5 | `assetType` tinyint(4) NOT NULL, | ||
6 | `invType` tinyint(4) NOT NULL, | ||
7 | `local` tinyint(1) NOT NULL, | ||
8 | `temporary` tinyint(1) NOT NULL, | ||
9 | `data` longblob NOT NULL, | ||
10 | PRIMARY KEY (`id`) | ||
11 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rev. 1'; \ No newline at end of file | ||