diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2023-10-29 16:39:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-29 16:39:06 -0700 |
commit | 870fcd261f736311bc7458e9374aac1dfdf1b9fd (patch) | |
tree | eae083565f578feefa3bea354c5d77eac2c25f84 /schema | |
parent | 468a9c22bea1421a5df5513766dd7709f1e05b04 (diff) | |
parent | 3296318dccfcc83cc99d6da58affe5ee8a46fedb (diff) | |
download | trackermap-server-870fcd261f736311bc7458e9374aac1dfdf1b9fd.tar.gz trackermap-server-870fcd261f736311bc7458e9374aac1dfdf1b9fd.tar.bz2 trackermap-server-870fcd261f736311bc7458e9374aac1dfdf1b9fd.zip |
Merge pull request #5204 from e-macgregor/master
totp
Diffstat (limited to 'schema')
-rw-r--r-- | schema/changelog-5.10.xml | 17 | ||||
-rw-r--r-- | schema/changelog-master.xml | 1 |
2 files changed, 18 insertions, 0 deletions
diff --git a/schema/changelog-5.10.xml b/schema/changelog-5.10.xml new file mode 100644 index 000000000..63988b14a --- /dev/null +++ b/schema/changelog-5.10.xml @@ -0,0 +1,17 @@ +<?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.10"> + + <changeSet author="author" id="changelog-5.10"> + + <addColumn tableName="tc_users"> + <column name="totpkey" type="VARCHAR(64)" /> + </addColumn> + + </changeSet> + +</databaseChangeLog> diff --git a/schema/changelog-master.xml b/schema/changelog-master.xml index 331d5ec78..183b3fd93 100644 --- a/schema/changelog-master.xml +++ b/schema/changelog-master.xml @@ -40,5 +40,6 @@ <include file="changelog-5.7.xml" relativeToChangelogFile="true" /> <include file="changelog-5.8.xml" relativeToChangelogFile="true" /> <include file="changelog-5.9.xml" relativeToChangelogFile="true" /> + <include file="changelog-5.10.xml" relativeToChangelogFile="true" /> </databaseChangeLog> |