mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
470 B
C
24 lines
470 B
C
8 years ago
|
//
|
||
7 years ago
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
||
8 years ago
|
//
|
||
9 years ago
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
7 years ago
|
typedef void (^OWSDatabaseMigrationCompletion)(void);
|
||
|
|
||
9 years ago
|
@interface OWSDatabaseMigrationRunner : NSObject
|
||
|
|
||
|
/**
|
||
|
* Run any outstanding version migrations.
|
||
|
*/
|
||
7 years ago
|
- (void)runAllOutstandingWithCompletion:(OWSDatabaseMigrationCompletion)completion;
|
||
9 years ago
|
|
||
|
/**
|
||
|
* On new installations, no need to migrate anything.
|
||
|
*/
|
||
|
- (void)assumeAllExistingMigrationsRun;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|