Rename download db sqlite file

Rename the sqlite database to "downloads.db" instead of "newpipe.db"
to make sure the file will create a conflicts later.
This commit is contained in:
Coffeemakr 2017-01-20 18:54:15 +01:00
parent ea76f1d6e2
commit 7fb4e5a143
2 changed files with 5 additions and 5 deletions

View file

@ -17,7 +17,7 @@ public class DownloadMissionSQLiteHelper extends SQLiteOpenHelper {
private final String TAG = "DownloadMissionHelper";
// TODO: use NewPipeSQLiteHelper ('s constants) when playlist branch is merged (?)
private static final String DATABASE_NAME = "newpipe.db";
private static final String DATABASE_NAME = "downloads.db";
private static final int DATABASE_VERSION = 2;
/**