-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1281 from openlibraryenvironment/OLE-9412
OLE-9412 : SQL Script for Request web service - allow optional "request note" field
- Loading branch information
Showing
3 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
...e/ole-liquibase-upgrade/src/main/resources/org/kuali/ole/3.0.17/db.changelog-20190808.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" | ||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd | ||
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd"> | ||
|
||
<changeSet context="bootstrap" author="ole" id="ALTER_OLE_ASR_RQST_T_MYSQL" dbms="mysql"> | ||
<sql>ALTER TABLE OLE_ASR_RQST_T ADD COLUMN RQST_NOTE varchar(4000)</sql> | ||
</changeSet> | ||
</databaseChangeLog> |
16 changes: 16 additions & 0 deletions
16
...b/ole-sql/ole-liquibase-upgrade-sql/src/main/resources/org/kuali/ole/sql/mysql/3.0.17.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
-- ********************************************************************* | ||
-- Update Database Script | ||
-- ********************************************************************* | ||
-- Change Log: org/kuali/ole/3.0.17/db.changelog-20190808.xml | ||
-- ********************************************************************* | ||
|
||
-- Lock Database | ||
-- Changeset org/kuali/ole/3.0.17/db.changelog-20190808.xml::ALTER_OLE_ASR_RQST_T_MYSQL::ole | ||
ALTER TABLE OLE_ASR_RQST_T ADD COLUMN RQST_NOTE varchar(4000) | ||
/ | ||
|
||
INSERT INTO DATABASECHANGELOG (ID, AUTHOR, FILENAME, DATEEXECUTED, ORDEREXECUTED, MD5SUM, DESCRIPTION, COMMENTS, EXECTYPE, LIQUIBASE) VALUES ('ALTER_OLE_ASR_RQST_T_MYSQL', 'ole', 'org/kuali/ole/3.0.17/db.changelog-20190808.xml', NOW(), 1, '7:fe18baba1cbe9d76b5f312aea2863e10', 'sql', '', 'EXECUTED', '3.2.0') | ||
/ | ||
|
||
-- Release Database Lock | ||
-- Release Database Lock |