Skip to content

Commit

Permalink
SAK-31155 - SAM_PUBLISHED_ASSESSMENT_T wrong name in conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
jonespm committed May 5, 2016
1 parent 6a2107d commit 18383ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion reference/docs/conversion/sakai_12_mysql_conversion.sql
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ DROP TABLE PERMISSIONS_SRC_TEMP;
--
-- SAM-1200 - Increase column data sizes
--
alter table SAM_PUBLISHED_ASSESSMENT_T change description description mediumtext null;
alter table SAM_PUBLISHEDASSESSMENT_T change description description mediumtext null;
alter table SAM_PUBLISHEDSECTION_T change description description mediumtext null;
alter table SAM_ASSESSMENTBASE_T change description description mediumtext null;
alter table SAM_SECTION_T change description description mediumtext null;
Expand Down
8 changes: 4 additions & 4 deletions reference/docs/conversion/sakai_12_oracle_conversion.sql
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ DROP TABLE PERMISSIONS_SRC_TEMP;
--
-- KNL-1200 Oracle conversion, size increases of Samigo columns
--
alter table SAM_PUBLISHED_ASSESSMENT_T add tempcol clob;
update SAM_PUBLISHED_ASSESSMENT_T set tempcol=description;
alter table SAM_PUBLISHED_ASSESSMENT_T drop column description;
alter table SAM_PUBLISHED_ASSESSMENT_T rename column tempcol to description;
alter table SAM_PUBLISHEDASSESSMENT_T add tempcol clob;
update SAM_PUBLISHEDASSESSMENT_T set tempcol=description;
alter table SAM_PUBLISHEDASSESSMENT_T drop column description;
alter table SAM_PUBLISHEDASSESSMENT_T rename column tempcol to description;

alter table SAM_PUBLISHEDSECTION_T add tempcol clob;
update SAM_PUBLISHEDSECTION_T set tempcol=description;
Expand Down

0 comments on commit 18383ae

Please sign in to comment.