aboutsummaryrefslogtreecommitdiff
path: root/schema/changelog-5.3.xml
diff options
context:
space:
mode:
Diffstat (limited to 'schema/changelog-5.3.xml')
-rw-r--r--schema/changelog-5.3.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/schema/changelog-5.3.xml b/schema/changelog-5.3.xml
index 063046ce9..1e5a6005a 100644
--- a/schema/changelog-5.3.xml
+++ b/schema/changelog-5.3.xml
@@ -20,6 +20,22 @@
<column name="expirationtime" type="TIMESTAMP" />
</addColumn>
+ <createTable tableName="tc_keystore">
+ <column autoIncrement="true" name="id" type="INT">
+ <constraints primaryKey="true" />
+ </column>
+ <column name="publickey" type="MEDIUMBLOB">
+ <constraints nullable="false" />
+ </column>
+ <column name="privatekey" type="MEDIUMBLOB">
+ <constraints nullable="false" />
+ </column>
+ </createTable>
+
+ <dropIndex indexName="idx_users_token" tableName="tc_users" />
+
+ <dropColumn tableName="tc_users" columnName="token" />
+
</changeSet>
</databaseChangeLog>