MOBILE-3633 calendar: Fix calendar DB migration

main
Dani Palou 2021-01-20 14:07:53 +01:00
parent 1800beed31
commit 16e8b13083
1 changed files with 8 additions and 8 deletions

View File

@ -211,6 +211,7 @@ export const CALENDAR_SITE_SCHEMA: CoreSiteSchema = {
oldTable = 'addon_calendar_events';
}
try {
await db.tableExists(oldTable);
// Move the records from the old table.
@ -219,7 +220,6 @@ export const CALENDAR_SITE_SCHEMA: CoreSiteSchema = {
await Promise.all(promises);
try {
db.dropTable(oldTable);
} catch {
// Old table does not exist, ignore.