Skip to content

Commit

Permalink
fix lack of table marketSources; Updated to v0.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PureDark committed Aug 7, 2017
1 parent c59042e commit a90c594
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ android {
resValue "string", "app_name", "H-Viewer"
minSdkVersion 17
targetSdkVersion 25
versionCode 88
versionName "0.12.0"
versionCode 89
versionName "0.12.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
//multiDexEnabled true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE `searchSuggestions`(`title` text primary key)");
db.execSQL("CREATE TABLE `siteTags`(`sid` integer, `title` text, `url` text, FOREIGN KEY(`sid`) REFERENCES `sites`(`sid`), PRIMARY KEY(`sid`,`title`))");
db.execSQL("CREATE TABLE `favorSiteTags`(`tid` integer primary key autoincrement, `title` text, `url` text, `index` integer)");
db.execSQL("CREATE TABLE `marketSources`(`msid` integer primary key autoincrement, `name` text, `jsonUrl` text)");
}

@Override
Expand Down

0 comments on commit a90c594

Please sign in to comment.