1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-04-16 20:01:22 +00:00

Remove migration test, add manual testing reminder to Migrations.java

This commit is contained in:
ktprograms
2021-08-17 08:57:03 +08:00
parent 02aa6fcab0
commit 967bdf8f08
2 changed files with 9 additions and 78 deletions

View File

@@ -9,6 +9,15 @@ import androidx.sqlite.db.SupportSQLiteDatabase;
import org.schabi.newpipe.MainActivity;
public final class Migrations {
/////////////////////////////////////////////////////////////////////////////
// Test new migrations manually by importing a database from daily usage //
// and checking if the migration works (Use the Database Inspector //
// https://developer.android.com/studio/inspect/database). //
// If you add a migration point it out in the pull request, so that //
// others remember to test it themselves. //
/////////////////////////////////////////////////////////////////////////////
public static final int DB_VER_1 = 1;
public static final int DB_VER_2 = 2;
public static final int DB_VER_3 = 3;