mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-18 19:40:19 +00:00
12 lines
354 B
Swift
12 lines
354 B
Swift
import Foundation
|
|
|
|
func postboxUpgrade_12to13(metadataTable: MetadataTable, valueBox: ValueBox) {
|
|
// drop PeerMergedOperationLogIndexTable
|
|
valueBox.dropTable(ValueBoxTable(id: 30, keyType: .binary))
|
|
|
|
// drop PeerOperationLogTable
|
|
valueBox.dropTable(ValueBoxTable(id: 31, keyType: .binary))
|
|
|
|
metadataTable.setUserVersion(13)
|
|
}
|