diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2018-04-27 17:06:27 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2018-04-27 17:06:27 +1200 |
commit | 4aea55186a2374350f825cf2008847ce4c5ae87c (patch) | |
tree | f688bfea239bfc3985389f1ccffc2d0f1e32275f /schema/changelog-3.17.xml | |
parent | 2738665b298f3b8de33f96c893ae40ac5d6d25d0 (diff) | |
download | trackermap-server-4aea55186a2374350f825cf2008847ce4c5ae87c.tar.gz trackermap-server-4aea55186a2374350f825cf2008847ce4c5ae87c.tar.bz2 trackermap-server-4aea55186a2374350f825cf2008847ce4c5ae87c.zip |
Rename admin to administrator (fix #3858)
Diffstat (limited to 'schema/changelog-3.17.xml')
-rw-r--r-- | schema/changelog-3.17.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/schema/changelog-3.17.xml b/schema/changelog-3.17.xml index ef296fe25..54c3db531 100644 --- a/schema/changelog-3.17.xml +++ b/schema/changelog-3.17.xml @@ -6,6 +6,18 @@ http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd" logicalFilePath="changelog-3.17"> + <changeSet author="author" id="changelog-3.3-admin"> + + <preConditions onFail="MARK_RAN"> + <not> + <columnExists tableName="administrator" columnName="admin" /> + </not> + </preConditions> + + <renameColumn tableName="users" columnDataType="BOOLEAN" oldColumnName="admin" newColumnName="administrator" /> + + </changeSet> + <changeSet author="author" id="changelog-3.17"> <addColumn tableName="events"> |