Don't read "soft-deleted" profiles

Nothing is actually "soft-deleting" profiles yet, and this
is a first step toward migrating profiles to a new data
store.
This commit is contained in:
Jon Chambers
2021-11-23 10:59:34 -05:00
committed by Jon Chambers
parent 6919354520
commit 46d64b949e
2 changed files with 19 additions and 1 deletions

View File

@@ -385,4 +385,14 @@
<dropTable tableName="accounts"/>
</changeSet>
<changeSet id="27" author="jon">
<addColumn tableName="profiles">
<column name="deleted" type="boolean" defaultValue="false"/>
</addColumn>
</changeSet>
<changeSet id="28" author="jon" runInTransaction="false">
<sql>CREATE INDEX CONCURRENTLY deleted_profile_index ON profiles (deleted);</sql>
</changeSet>
</databaseChangeLog>