diff options
Diffstat (limited to 'database/db.changelog-3.3.xml')
-rw-r--r-- | database/db.changelog-3.3.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/database/db.changelog-3.3.xml b/database/db.changelog-3.3.xml index cb9823ef8..54b1fa9eb 100644 --- a/database/db.changelog-3.3.xml +++ b/database/db.changelog-3.3.xml @@ -5,6 +5,24 @@ xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd"> + <changeSet author="author" id="changelog-3.3-normalize"> + + <preConditions onFail="MARK_RAN"> + <not> + <columnExists tableName="user_device" columnName="read"/> + </not> + </preConditions> + + <renameColumn tableName="user_device" oldColumnName="quotedRead" newColumnName="read" /> + <renameColumn tableName="user_device" oldColumnName="quotedWrite" newColumnName="write" /> + + <modifySql> + <replace replace="quotedRead" with=""read"" /> + <replace replace="quotedWrite" with=""write"" /> + </modifySql> + + </changeSet> + <changeSet author="author" id="changelog-3.3"> <dropDefaultValue tableName="user" columnName="salt" /> |