mirror of
https://github.com/seiichiro0185/sailotp.git
synced 2024-11-22 07:39:42 +00:00
Fix for GitLab Issue #3
Initial DB-Creation and DB-Update now both set the default values.
This commit is contained in:
parent
99c3f83db7
commit
09edf6c8b8
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ function getDB() {
|
|||
// Initialize an empty DB, Create the Table
|
||||
db.changeVersion("", "2",
|
||||
function(tx) {
|
||||
tx.executeSql("CREATE TABLE IF NOT EXISTS OTPStorage(title TEXT, secret TEXT, type TEXT, counter INTEGER, fav INTEGER);");
|
||||
tx.executeSql("CREATE TABLE IF NOT EXISTS OTPStorage(title TEXT, secret TEXT, type TEXT DEFAULT 'TOPT', counter INTEGER DEFAULT 0, fav INTEGER DEFAULT 0);");
|
||||
}
|
||||
);
|
||||
} else if (db.version == "1.0") {
|
||||
|
|
Loading…
Reference in a new issue