diff options
author | Anton Tananaev <anton@traccar.org> | 2022-07-18 16:52:31 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-07-18 16:52:31 -0700 |
commit | 8bc3c8c7d2c762ec00bfb1960dcd02171b7312a6 (patch) | |
tree | 5f26a6e5f252803ccde9eaffe42b7d5a19990db2 /schema | |
parent | cf2583cec5f6b9c92730bdcdc5805944ff0bfa59 (diff) | |
download | trackermap-server-8bc3c8c7d2c762ec00bfb1960dcd02171b7312a6.tar.gz trackermap-server-8bc3c8c7d2c762ec00bfb1960dcd02171b7312a6.tar.bz2 trackermap-server-8bc3c8c7d2c762ec00bfb1960dcd02171b7312a6.zip |
Disable email change (fix #3878)
Diffstat (limited to 'schema')
-rw-r--r-- | schema/changelog-5.3.xml | 21 | ||||
-rw-r--r-- | schema/changelog-master.xml | 1 |
2 files changed, 22 insertions, 0 deletions
diff --git a/schema/changelog-5.3.xml b/schema/changelog-5.3.xml new file mode 100644 index 000000000..b574a67d2 --- /dev/null +++ b/schema/changelog-5.3.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<databaseChangeLog + xmlns="http://www.liquibase.org/xml/ns/dbchangelog" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog + http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.4.xsd" + logicalFilePath="changelog-5.3"> + + <changeSet author="author" id="changelog-5.3"> + + <addColumn tableName="tc_servers"> + <column name="fixedemail" type="BOOLEAN" defaultValueBoolean="false" /> + </addColumn> + + <addColumn tableName="tc_users"> + <column name="fixedemail" type="BOOLEAN" defaultValueBoolean="false" /> + </addColumn> + + </changeSet> + +</databaseChangeLog> diff --git a/schema/changelog-master.xml b/schema/changelog-master.xml index 83a1ac865..cea15397d 100644 --- a/schema/changelog-master.xml +++ b/schema/changelog-master.xml @@ -33,5 +33,6 @@ <include file="changelog-5.0.xml" relativeToChangelogFile="true" /> <include file="changelog-5.1.xml" relativeToChangelogFile="true" /> <include file="changelog-5.2.xml" relativeToChangelogFile="true" /> + <include file="changelog-5.3.xml" relativeToChangelogFile="true" /> </databaseChangeLog> |