mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 18:41:14 +01:00
17 lines
513 B
Java
17 lines
513 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.
|
||
|
*
|
||
|
* Implementations must have a public, no-arg constructor.
|
||
|
*/
|
||
|
public interface DBUpdateScript {
|
||
|
void upgradeSchema(SQLiteDatabase database);
|
||
|
void downgradeSchema(SQLiteDatabase database);
|
||
|
}
|