mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-22 15:08:02 +01:00
Support for UUID based addressing
This commit is contained in:
@@ -197,4 +197,14 @@
|
||||
<dropNotNullConstraint tableName="pending_accounts" columnName="verification_code"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="7" author="moxie">
|
||||
<addColumn tableName="accounts">
|
||||
<column name="uuid" type="uuid"/>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="8" author="moxie" runInTransaction="false">
|
||||
<sql>CREATE UNIQUE INDEX CONCURRENTLY uuid_index ON accounts (uuid);</sql>
|
||||
</changeSet>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
||||
@@ -121,4 +121,10 @@
|
||||
<sql>CREATE INDEX CONCURRENTLY guid_index ON messages (guid);</sql>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="13" author="moxie">
|
||||
<addColumn tableName="messages">
|
||||
<column name="source_uuid" type="uuid"/>
|
||||
</addColumn>
|
||||
</changeSet>
|
||||
|
||||
</databaseChangeLog>
|
||||
|
||||
Reference in New Issue
Block a user