diff options
author | UbitUmarov | 2019-08-10 22:18:55 +0100 |
---|---|---|
committer | UbitUmarov | 2019-08-10 22:18:55 +0100 |
commit | 4812833435e8e38b422b9cad816ee080dfd8716d (patch) | |
tree | 03310aaced6e151b1f9142be667e298d2e6556ce /OpenSim/Data/MySQL/Resources | |
parent | mantis 8573 and 8569: be more aggressive on drag block with touch on non phys... (diff) | |
download | opensim-SC-4812833435e8e38b422b9cad816ee080dfd8716d.zip opensim-SC-4812833435e8e38b422b9cad816ee080dfd8716d.tar.gz opensim-SC-4812833435e8e38b422b9cad816ee080dfd8716d.tar.bz2 opensim-SC-4812833435e8e38b422b9cad816ee080dfd8716d.tar.xz |
set default value for timestand on groups v2 invites table
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/os_groups_Store.migrations | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations b/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations index 6ec8914..1a8b565 100644 --- a/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations +++ b/OpenSim/Data/MySQL/Resources/os_groups_Store.migrations | |||
@@ -113,3 +113,11 @@ DROP TABLE `diva_groups_principals`; | |||
113 | DELETE FROM `migrations` WHERE name='diva_im_Store'; | 113 | DELETE FROM `migrations` WHERE name='diva_im_Store'; |
114 | 114 | ||
115 | COMMIT; | 115 | COMMIT; |
116 | |||
117 | :VERSION 3 # -------------------------- | ||
118 | |||
119 | ALTER TABLE `os_groups_invites` | ||
120 | |||
121 | MODIFY `TMStamp` timestamp NOT NULL, default CURRENT_TIMESTAMP; | ||
122 | |||
123 | COMMIT; | ||