diff --git a/Frameworks/LocalAccount/LocalDatabase.swift b/Frameworks/LocalAccount/LocalDatabase.swift index 596bc1988..147ce61cc 100644 --- a/Frameworks/LocalAccount/LocalDatabase.swift +++ b/Frameworks/LocalAccount/LocalDatabase.swift @@ -45,9 +45,6 @@ final class LocalDatabase { let createStatementsPath = Bundle(for: type(of: self)).path(forResource: "LocalCreateStatements", ofType: "sql")! let createStatements = try! NSString(contentsOfFile: createStatementsPath, encoding: String.Encoding.utf8.rawValue) queue.createTables(usingStatements: createStatements as String) - queue.run { (database) in - let _ = database.executeUpdate("drop index dateArrivedIndex;", withArgumentsIn: []) - } queue.vacuumIfNeeded() }