Remove tombstone column from keys table

This commit is contained in:
Moxie Marlinspike 2020-02-25 12:25:34 -08:00
parent 0db2a81e4e
commit 8b10b1dc62
1 changed files with 7 additions and 0 deletions

View File

@ -303,5 +303,12 @@
<sql>CREATE INDEX CONCURRENTLY deleted_key_index ON keys (deleted);</sql>
</changeSet>
<changeSet id="15" author="moxie" runInTransaction="false">
<sql>DROP INDEX CONCURRENTLY deleted_key_index;</sql>
</changeSet>
<changeSet id="16" author="moxie">
<dropColumn tableName="keys" columnName="deleted"/>
</changeSet>
</databaseChangeLog>