mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 23:58:06 +01:00
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:
committed by
Jon Chambers
parent
6919354520
commit
46d64b949e
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user