aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorMelanie Thielker2015-06-26 19:08:51 +0200
committerMelanie Thielker2015-06-26 19:08:51 +0200
commit987e7e4f84dff3450cd03ebd0f6c540dedb00230 (patch)
tree775a8780d775f25fee3c513af19c0a7ee718e864 /OpenSim/Data
parentBulletSim: fix two compiler warnings. (diff)
downloadopensim-SC_OLD-987e7e4f84dff3450cd03ebd0f6c540dedb00230.zip
opensim-SC_OLD-987e7e4f84dff3450cd03ebd0f6c540dedb00230.tar.gz
opensim-SC_OLD-987e7e4f84dff3450cd03ebd0f6c540dedb00230.tar.bz2
opensim-SC_OLD-987e7e4f84dff3450cd03ebd0f6c540dedb00230.tar.xz
Applying Gavin Hird's patch to correct PGSQL group notices. Thatk you,
Gavin
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/PGSQL/Resources/os_groups_Store.migrations12
1 files changed, 11 insertions, 1 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/os_groups_Store.migrations b/OpenSim/Data/PGSQL/Resources/os_groups_Store.migrations
index 7489bef..74b07c3 100644
--- a/OpenSim/Data/PGSQL/Resources/os_groups_Store.migrations
+++ b/OpenSim/Data/PGSQL/Resources/os_groups_Store.migrations
@@ -198,4 +198,14 @@ CREATE TABLE os_groups_principals (
198 constraint os_groupprincpk PRIMARY KEY ("PrincipalID") 198 constraint os_groupprincpk PRIMARY KEY ("PrincipalID")
199); 199);
200 200
201COMMIT; \ No newline at end of file 201COMMIT;
202
203:VERSION 4
204
205BEGIN;
206
207ALTER TABLE IF EXISTS os_groups_notices
208 ALTER COLUMN "AttachmentItemID" SET DEFAULT '00000000-0000-0000-0000-000000000000'
209;
210
211COMMIT;