File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -251,12 +251,13 @@ + (void)migrateDatabase:(FMDatabase *)database
251
251
NSLog (@" Updated database schema to version 23." );
252
252
}
253
253
case 24 :
254
- case 25 : {
254
+ case 25 :
255
+ case 26 : {
255
256
// correct articles that were saved with updatedDate is 1.1.1970 00:00
256
257
[database executeStatements: @" UPDATE messages SET date = createddate WHERE date = 0" ];
257
258
258
- database.userVersion = (uint32_t )25 ;
259
- NSLog (@" Updated database schema to version 25 ." );
259
+ database.userVersion = (uint32_t )26 ;
260
+ NSLog (@" Updated database schema to version 26 ." );
260
261
}
261
262
}
262
263
}
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ + (NSString *)databasePath;
57
57
58
58
// The current database version number
59
59
static NSInteger const VNAMinimumSupportedDatabaseVersion = 12 ;
60
- static NSInteger const VNACurrentDatabaseVersion = 25 ;
60
+ static NSInteger const VNACurrentDatabaseVersion = 26 ;
61
61
62
62
@implementation Database
63
63
You can’t perform that action at this time.
0 commit comments