diff options
author | UbitUmarov | 2019-08-17 23:59:01 +0100 |
---|---|---|
committer | UbitUmarov | 2019-08-17 23:59:01 +0100 |
commit | 115d69e63332498e5daebc173c11de25097666d8 (patch) | |
tree | 938be8e0623eb57251456b4ccea39433608984c0 | |
parent | EstateAccess do fill the fields(mySQL only); fix the response (diff) | |
download | opensim-SC-115d69e63332498e5daebc173c11de25097666d8.zip opensim-SC-115d69e63332498e5daebc173c11de25097666d8.tar.gz opensim-SC-115d69e63332498e5daebc173c11de25097666d8.tar.bz2 opensim-SC-115d69e63332498e5daebc173c11de25097666d8.tar.xz |
missing file
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/EstateStore.migrations | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/EstateStore.migrations b/OpenSim/Data/MySQL/Resources/EstateStore.migrations index 615af95..37f8cfd 100644 --- a/OpenSim/Data/MySQL/Resources/EstateStore.migrations +++ b/OpenSim/Data/MySQL/Resources/EstateStore.migrations | |||
@@ -69,3 +69,10 @@ CREATE TABLE IF NOT EXISTS `estateban` ( | |||
69 | 69 | ||
70 | COMMIT; | 70 | COMMIT; |
71 | 71 | ||
72 | :VERSION 35 | ||
73 | BEGIN; | ||
74 | ALTER TABLE `estateban` | ||
75 | ADD COLUMN `banningUUID` varchar(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000', | ||
76 | ADD COLUMN `banTime` int(11) NOT NULL DEFAULT 0; | ||
77 | COMMIT; | ||
78 | |||