Fixed
Details
Details
Priority
Affects versions
Components
Assignee
Seth Theriault
Seth TheriaultReporter
Seth Theriault
Seth TheriaultConversion Script Required
Yes
Environment
Oracle 9i
Created February 21, 2011 at 2:00 PM
Updated April 17, 2018 at 8:31 AM
Resolved February 22, 2011 at 11:29 AM
When comparing a fresh auto-ddl'd 2.8 beta05 database against an upgraded 2.7.1 database, the following inconsistencies were found:
SAM_ASSESSFEEDBACK_T.FEEDBACKCOMPONENTOPTION
2.8 auto.ddl: NUMBER(10,0)
2.7.1 converted: NUMBER(22,0)
-SAM_PUBLISHEDFEEDBACK_T.FEEDBACKCOMPONENTOPTION
2.8 auto.ddl: NUMBER(10,0)
2.7.1 converted: NUMBER(22,0)
The relevant entries in the 2.8 conversion scripts are:
– https://sakaiproject.atlassian.net/browse/SAM-666#icft=SAM-666
alter table SAM_ASSESSFEEDBACK_T add FEEDBACKCOMPONENTOPTION number default null;
update SAM_ASSESSFEEDBACK_T set FEEDBACKCOMPONENTOPTION = 2;
alter table SAM_PUBLISHEDFEEDBACK_T add FEEDBACKCOMPONENTOPTION number default null;
update SAM_PUBLISHEDFEEDBACK_T set FEEDBACKCOMPONENTOPTION = 2;