From f7a496136d20de2cc9a34ba6b563b008b6c18a04 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Mon, 19 Aug 2019 12:28:17 +0100 Subject: [PATCH] change PGSQL migration --- OpenSim/Data/PGSQL/Resources/EstateStore.migrations | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenSim/Data/PGSQL/Resources/EstateStore.migrations b/OpenSim/Data/PGSQL/Resources/EstateStore.migrations index d0ca5c07db..d0730bb2f7 100644 --- a/OpenSim/Data/PGSQL/Resources/EstateStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/EstateStore.migrations @@ -129,7 +129,7 @@ COMMIT; :VERSION 14 BEGIN TRANSACTION; -ALTER TABLE `estateban` - ADD COLUMN `banningUUID` uuid NOT NULL, - ADD COLUMN `banTime` int NOT NULL DEFAULT 0; +ALTER TABLE "public"."estateban" + ADD COLUMN "banningUUID" uuid NOT NULL, + ADD COLUMN "banTime" int4 NOT NULL DEFAULT 0; COMMIT;