mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 10:02:28 -06:00
17 lines
406 B
Java
17 lines
406 B
Java
|
package androidx.room.migration;
|
||
|
|
||
|
import androidx.sqlite.db.SupportSQLiteDatabase;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public abstract class Migration {
|
||
|
public final int endVersion;
|
||
|
public final int startVersion;
|
||
|
|
||
|
public abstract void migrate(SupportSQLiteDatabase supportSQLiteDatabase);
|
||
|
|
||
|
public Migration(int i, int i2) {
|
||
|
this.startVersion = i;
|
||
|
this.endVersion = i2;
|
||
|
}
|
||
|
}
|