Skip to content

Commit

Permalink
postgresql - fix sql update for com_fields
Browse files Browse the repository at this point in the history
added the missed 2 fields checked_out, checked_out_time  from #__fields_groups
  • Loading branch information
alikon committed Dec 6, 2016
1 parent 9593bb5 commit 5d6c825
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -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,
Expand Down

0 comments on commit 5d6c825

Please sign in to comment.