diff options
author | Melanie Thielker | 2015-06-26 19:08:51 +0200 |
---|---|---|
committer | Melanie Thielker | 2015-06-26 19:08:51 +0200 |
commit | 987e7e4f84dff3450cd03ebd0f6c540dedb00230 (patch) | |
tree | 775a8780d775f25fee3c513af19c0a7ee718e864 | |
parent | BulletSim: fix two compiler warnings. (diff) | |
download | opensim-SC-987e7e4f84dff3450cd03ebd0f6c540dedb00230.zip opensim-SC-987e7e4f84dff3450cd03ebd0f6c540dedb00230.tar.gz opensim-SC-987e7e4f84dff3450cd03ebd0f6c540dedb00230.tar.bz2 opensim-SC-987e7e4f84dff3450cd03ebd0f6c540dedb00230.tar.xz |
Applying Gavin Hird's patch to correct PGSQL group notices. Thatk you,
Gavin
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/PGSQL/Resources/os_groups_Store.migrations | 12 |
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 | ||
201 | COMMIT; \ No newline at end of file | 201 | COMMIT; |
202 | |||
203 | :VERSION 4 | ||
204 | |||
205 | BEGIN; | ||
206 | |||
207 | ALTER TABLE IF EXISTS os_groups_notices | ||
208 | ALTER COLUMN "AttachmentItemID" SET DEFAULT '00000000-0000-0000-0000-000000000000' | ||
209 | ; | ||
210 | |||
211 | COMMIT; | ||