summaryrefslogtreecommitdiffstats
path: root/src/com/android/photos/data/PhotoDatabase.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/photos/data/PhotoDatabase.java')
-rw-r--r--src/com/android/photos/data/PhotoDatabase.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/com/android/photos/data/PhotoDatabase.java b/src/com/android/photos/data/PhotoDatabase.java
index 64a857fcc..35de18540 100644
--- a/src/com/android/photos/data/PhotoDatabase.java
+++ b/src/com/android/photos/data/PhotoDatabase.java
@@ -30,7 +30,6 @@ import com.android.photos.data.PhotoProvider.Photos;
public class PhotoDatabase extends SQLiteOpenHelper {
@SuppressWarnings("unused")
private static final String TAG = PhotoDatabase.class.getSimpleName();
- static final String DB_NAME = "photo.db";
static final int DB_VERSION = 1;
private static final String SQL_CREATE_TABLE = "CREATE TABLE ";
@@ -72,8 +71,8 @@ public class PhotoDatabase extends SQLiteOpenHelper {
createTable(db, Metadata.TABLE, CREATE_METADATA);
}
- public PhotoDatabase(Context context) {
- super(context, DB_NAME, null, DB_VERSION);
+ public PhotoDatabase(Context context, String dbName) {
+ super(context, dbName, null, DB_VERSION);
}
@Override