mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
16 lines
406 B
Java
16 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;
|
|
}
|
|
}
|