mirror of
https://github.com/immich-app/immich.git
synced 2025-05-30 19:54:52 -04:00
11 lines
269 B
Dart
11 lines
269 B
Dart
abstract class IDatabaseRepository<T> {
|
|
/// Current version of the DB to aid with migration
|
|
int get schemaVersion;
|
|
|
|
/// Initializes the DB and returns the corresponding object
|
|
T init();
|
|
|
|
/// Check and migrate the DB to the latest schema
|
|
void migrateDB();
|
|
}
|