From 5d6c825d47160f8864da359c4744fff704214ac8 Mon Sep 17 00:00:00 2001 From: Nicola Galgano Date: Tue, 6 Dec 2016 07:44:39 +0100 Subject: [PATCH] postgresql - fix sql update for com_fields added the missed 2 fields checked_out, checked_out_time from #__fields_groups --- .../com_admin/sql/updates/postgresql/3.7.0-2016-08-29.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/administrator/components/com_admin/sql/updates/postgresql/3.7.0-2016-08-29.sql b/administrator/components/com_admin/sql/updates/postgresql/3.7.0-2016-08-29.sql index 566226b2140f6..961af827628f2 100644 --- a/administrator/components/com_admin/sql/updates/postgresql/3.7.0-2016-08-29.sql +++ b/administrator/components/com_admin/sql/updates/postgresql/3.7.0-2016-08-29.sql @@ -53,6 +53,8 @@ CREATE TABLE "#__fields_groups" ( "note" varchar(255) DEFAULT '' NOT NULL, "description" text DEFAULT '' NOT NULL, "state" smallint DEFAULT 0 NOT NULL, + "checked_out" integer DEFAULT 0 NOT NULL, + "checked_out_time" timestamp without time zone DEFAULT '1970-01-01 00:00:00' NOT NULL, "ordering" bigint DEFAULT 0 NOT NULL, "language" varchar(7) DEFAULT '' NOT NULL, "created" timestamp without time zone DEFAULT '1970-01-01 00:00:00' NOT NULL,