Add index to db migration for archived_conversations

This commit is contained in:
Ensar Sarajčić 2023-07-13 13:52:54 +02:00
parent c51dc0b935
commit 1b7874446b
1 changed files with 1 additions and 0 deletions

View File

@ -118,6 +118,7 @@ abstract class MessagesDatabase : RoomDatabase() {
override fun migrate(database: SupportSQLiteDatabase) {
database.apply {
execSQL("CREATE TABLE IF NOT EXISTS archived_conversations (`thread_id` INTEGER NOT NULL PRIMARY KEY, `deleted_ts` INTEGER NOT NULL)")
execSQL("CREATE UNIQUE INDEX IF NOT EXISTS `index_archived_conversations_thread_id` ON `archived_conversations` (`thread_id`)")
}
}
}