aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/FSAssetStore.migrations
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/FSAssetStore.migrations')
-rw-r--r--OpenSim/Data/MySQL/Resources/FSAssetStore.migrations4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/Resources/FSAssetStore.migrations b/OpenSim/Data/MySQL/Resources/FSAssetStore.migrations
index 4194af3..3f65d9e 100644
--- a/OpenSim/Data/MySQL/Resources/FSAssetStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/FSAssetStore.migrations
@@ -3,7 +3,7 @@
3 3
4BEGIN; 4BEGIN;
5 5
6CREATE TABLE `fsassets` ( 6CREATE TABLE IF NOT EXISTS `fsassets` (
7 `id` char(36) NOT NULL, 7 `id` char(36) NOT NULL,
8 `name` varchar(64) NOT NULL DEFAULT '', 8 `name` varchar(64) NOT NULL DEFAULT '',
9 `description` varchar(64) NOT NULL DEFAULT '', 9 `description` varchar(64) NOT NULL DEFAULT '',
@@ -15,4 +15,4 @@ CREATE TABLE `fsassets` (
15 PRIMARY KEY (`id`) 15 PRIMARY KEY (`id`)
16) ENGINE=MyISAM DEFAULT CHARSET=utf8; 16) ENGINE=MyISAM DEFAULT CHARSET=utf8;
17 17
18COMMIT; \ No newline at end of file 18COMMIT;