-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
When updating to a new version of the database you get this error. The database updates as you would expect it, but it's still logs this error.
It's within this method:
// This method will iterate the versioning scripts and execute them.
- (BOOL)executeUpgradesWithVersions:(NSArray*)versions {
for (NSNumber *version in versions) {
[_database open];
NSString *upgradeScript = [self getUpgradeScriptForVersion:[version doubleValue]];
NSError *error;
[_database executeBatchWithSqlScript:upgradeScript outError:&error];
if (error != nil)
NSLog(@"Updated failed with error");
[_database close];
}
return true;
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
