Fix db name

This commit is contained in:
Anton Thomasson 2019-12-02 20:56:06 +01:00
parent 7c54a90fbb
commit ad883cbdab
2 changed files with 6 additions and 1 deletions

View file

@ -15,7 +15,7 @@ ApplicationWindow
property var db_conn
Component.onCompleted: {
db_conn = LocalStorage.openDatabaseSync("TintDB", "1.0", "Tint storage", 100000)
db_conn = LocalStorage.openDatabaseSync("SeaprintDB", "1.0", "Seaprint storage", 100000)
db_conn.transaction(function (tx) {
tx.executeSql('CREATE TABLE IF NOT EXISTS Favourites (ssid STRING, url STRING)');

View file

@ -0,0 +1,5 @@
import QtQuick 2.0
Item {
}