create table SAKAI_MESSAGE_BUNDLE statement missing in 2.8.0 conversion scripts

Description

The new SAKAI_MESSAGE_BUNDLE table added by KNL-563 is missing in the 2.8.0 Oracle conversion scripts. I've added it to the MySQL conversion scripts during my test/fix work as:

– KNL-563 table structure for sakai_message_bundle
create table SAKAI_MESSAGE_BUNDLE (
ID bigint(20) not null auto_increment,
MODULE_NAME varchar(255) not null,
BASENAME varchar(255) not null,
PROP_NAME varchar(255) not null,
PROP_VALUE text,
LOCALE varchar(255) not null,
DEFAULT_VALUE text not null,
primary key (ID)
);

We need a statement written in the Oracle dialect.

is depended on by

Activity

Show:

Hudson CI Server February 23, 2011 at 9:10 PM

Integrated in sakai trunk #447 (See http://builds.sakaiproject.org:8080/job/sakai%20trunk/447/)
SAK-20079, dynamic bundles additions

Anthony Whyte February 22, 2011 at 10:12 AM

2.8.x, r88693.

John Bush February 17, 2011 at 8:48 PM

Committed revision 88556.

John Bush February 17, 2011 at 8:35 PM

Ok got word back from dba says my index is good and recommends going with varchar2 over clob for host of performance related issues, so we should go with whats in my last comment, and then your sequence as well.

Seth Theriault February 17, 2011 at 12:51 PM

Once your Oracle DBA reviews this, we'll put it in.

Fixed

Details

Priority

Affects versions

Fix versions

Components

Assignee

Reporter

Conversion Script Required

Yes
Created February 17, 2011 at 6:04 AM
Updated March 14, 2011 at 1:17 AM
Resolved February 17, 2011 at 8:44 PM