Forums de discussion

Database differences 5.2.1 to 5.2.3 and 5.2.2 to 5.2.3

thumbnail
Peter B West, modifié il y a 14 années.

Database differences 5.2.1 to 5.2.3 and 5.2.2 to 5.2.3

Junior Member Publications: 56 Date d'inscription: 24/03/09 Publications récentes
Can anyone point me to documentation of any database changes between 5.2.1 and 5.2.3 and between 5.2.2 and 5.2.3?

Peter
thumbnail
Victor Zorin, modifié il y a 14 années.

RE: Database differences 5.2.1 to 5.2.3 and 5.2.2 to 5.2.3

Liferay Legend Publications: 1228 Date d'inscription: 14/04/08 Publications récentes
Peter, those db conversion scripts are usually stored in src package under liferay-portal-src-5.2.X/sql

Search for files called update-XXX-YYY.sql, where XXX and YYY are previous and next version numbers.

There is also a set of Java classes in portal-impl/src/com/liferay/portal/upgrade/UpgradeProcess_XXX.java
thumbnail
Peter B West, modifié il y a 14 années.

RE: Database differences 5.2.1 to 5.2.3 and 5.2.2 to 5.2.3

Junior Member Publications: 56 Date d'inscription: 24/03/09 Publications récentes
Thanks Victor!

I found the sql scripts for 5.2.1, 5.2.2. and 5.2.3. There is no 5.2.1->5.2.2 upgrade script, so presumably no database changes between 5.2.1. and 5.2.2, and there is a 5.2.2 -> 5.2.3 script, with changes as below:

alter:
alter table BookmarksEntry
alter table Company
alter table DLFileEntry
alter table DLFileRank
alter table DLFileShortcut
alter table DLFileVersion
alter table IGImage
alter table JournalArticle
alter table MBCategory
alter table MBMessage
alter table MBMessageFlag
alter table MBThread
alter table Organization_
alter table User_
alter table WikiPage

create:
create table BrowserTracker (
create table ResourceAction (
create table ResourcePermission (
create table Shard (

Peter