mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
18 lines
519 B
Java
18 lines
519 B
Java
package nodomain.freeyourgadget.gadgetbridge.database;
|
|
|
|
import android.database.sqlite.SQLiteDatabase;
|
|
|
|
/**
|
|
* Interface for updating a database schema.
|
|
* Implementors provide the update from the prior schema
|
|
* version to this version, and the downgrade from this schema
|
|
* version to the next lower version.
|
|
* <p/>
|
|
* Implementations must have a public, no-arg constructor.
|
|
*/
|
|
public interface DBUpdateScript {
|
|
void upgradeSchema(SQLiteDatabase database);
|
|
|
|
void downgradeSchema(SQLiteDatabase database);
|
|
}
|