aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/CreateAssetsTable.sql
diff options
context:
space:
mode:
authorSean Dague2009-02-17 19:06:23 +0000
committerSean Dague2009-02-17 19:06:23 +0000
commitc417a5b619eb85706a1782c5b0943cb8b28bd7a1 (patch)
treef14981b650694cfc4271f84368a27f63979ff35e /OpenSim/Data/MySQL/Resources/CreateAssetsTable.sql
parent* Allow inventory archives to be saved from the 'root' inventory directory (diff)
downloadopensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.zip
opensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.tar.gz
opensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.tar.bz2
opensim-SC_OLD-c417a5b619eb85706a1782c5b0943cb8b28bd7a1.tar.xz
remove all the very old create and upgrade sql files, these were
outdated by migrations 6 months ago.
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MySQL/Resources/CreateAssetsTable.sql11
1 files changed, 0 insertions, 11 deletions
diff --git a/OpenSim/Data/MySQL/Resources/CreateAssetsTable.sql b/OpenSim/Data/MySQL/Resources/CreateAssetsTable.sql
deleted file mode 100644
index 2c750fe..0000000
--- a/OpenSim/Data/MySQL/Resources/CreateAssetsTable.sql
+++ /dev/null
@@ -1,11 +0,0 @@
1CREATE 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