diff options
author | e-macgregor <122734173+e-macgregor@users.noreply.github.com> | 2023-10-29 17:20:36 -0600 |
---|---|---|
committer | e-macgregor <122734173+e-macgregor@users.noreply.github.com> | 2023-10-29 17:20:36 -0600 |
commit | 3296318dccfcc83cc99d6da58affe5ee8a46fedb (patch) | |
tree | eae083565f578feefa3bea354c5d77eac2c25f84 /schema/changelog-5.10.xml | |
parent | 468a9c22bea1421a5df5513766dd7709f1e05b04 (diff) | |
download | trackermap-server-3296318dccfcc83cc99d6da58affe5ee8a46fedb.tar.gz trackermap-server-3296318dccfcc83cc99d6da58affe5ee8a46fedb.tar.bz2 trackermap-server-3296318dccfcc83cc99d6da58affe5ee8a46fedb.zip |
totp
Diffstat (limited to 'schema/changelog-5.10.xml')
-rw-r--r-- | schema/changelog-5.10.xml | 17 |
1 files changed, 17 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> |