Skip to content

Commit

Permalink
Merge branch 'staging' of github.com:joomla/joomla-cms into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonge committed Jan 27, 2015
2 parents 7862244 + ac69b53 commit ee89a53
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/* Update updates version length */
ALTER TABLE "#__updates" ALTER COLUMN "version" TYPE varchar(32);
ALTER TABLE "#__updates" ALTER COLUMN "version" TYPE character varying(32);
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ALTER TABLE "#__user_profiles" ALTER COLUMN "profile_value" TYPE TEXT;
ALTER TABLE "#__user_profiles" ALTER COLUMN "profile_value" TYPE text;
3 changes: 2 additions & 1 deletion installation/sql/postgresql/joomla.sql
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ SELECT setval('#__assets_id_seq', 54, false);
-- Table: #__associations
--
CREATE TABLE "#__associations" (
"id" bigint NOT NULL,
"id" int NOT NULL,
"context" varchar(50) NOT NULL,
"key" char(32) NOT NULL,
CONSTRAINT "#__associations_idx_context_id" PRIMARY KEY ("context", "id")
Expand Down Expand Up @@ -422,6 +422,7 @@ CREATE TABLE "#__contentitem_tag_map" (
CONSTRAINT "#__uc_ItemnameTagid" UNIQUE ("type_alias", "content_item_id", "tag_id")
);
CREATE INDEX "#__contentitem_tag_map_idx_tag_type" ON "#__contentitem_tag_map" ("tag_id", "type_id");
CREATE INDEX "#__contentitem_tag_map_idx_tag_name" ON "#__contentitem_tag_map" ("tag_id", "type_alias");
CREATE INDEX "#__contentitem_tag_map_idx_date_id" ON "#__contentitem_tag_map" ("tag_date", "tag_id");
CREATE INDEX "#__contentitem_tag_map_idx_tag" ON "#__contentitem_tag_map" ("tag_id");
CREATE INDEX "#__contentitem_tag_map_idx_type" ON "#__contentitem_tag_map" ("type_id");
Expand Down

0 comments on commit ee89a53

Please sign in to comment.