offline: schema updated
This commit is contained in:
parent
25d9935382
commit
b871dd06e1
15
offline.js
15
offline.js
|
@ -1,3 +1,5 @@
|
||||||
|
var SCHEMA_VERSION = 2;
|
||||||
|
|
||||||
var offline_mode = false;
|
var offline_mode = false;
|
||||||
var store = false;
|
var store = false;
|
||||||
var localServer = false;
|
var localServer = false;
|
||||||
|
@ -572,19 +574,16 @@ function init_gears() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (version != SCHEMA_VERSION) {
|
if (version != SCHEMA_VERSION) {
|
||||||
db.execute("DROP TABLE cache");
|
db.execute("DROP TABLE IF EXISTS cache");
|
||||||
db.execute("DROP TABLE feeds");
|
db.execute("DROP TABLE IF EXISTS feeds");
|
||||||
db.execute("DROP TABLE articles");
|
db.execute("DROP TABLE IF EXISTS articles");
|
||||||
db.execute("INSERT INTO version (schema_version) VALUES (?)",
|
db.execute("INSERT INTO version (schema_version) VALUES (?)",
|
||||||
[SCHEMA_VERSION]);
|
[SCHEMA_VERSION]);
|
||||||
}
|
}
|
||||||
|
|
||||||
db.execute("CREATE TABLE IF NOT EXISTS cache (id text, article text, param text, added text)");
|
db.execute("CREATE TABLE IF NOT EXISTS cache (id text, article text, param text, added text)");
|
||||||
|
db.execute("CREATE TABLE IF NOT EXISTS feeds (id integer, title text, has_icon integer)");
|
||||||
db.execute("CREATE TABLE if not exists feeds (id integer, title text, has_icon integer)");
|
db.execute("CREATE TABLE IF NOT EXISTS articles (id integer, feed_id integer, title text, link text, guid text, updated text, content text, tags text, unread text, marked text, added text, comments text)");
|
||||||
|
|
||||||
db.execute("CREATE TABLE if not exists articles (id integer, feed_id integer, title text, link text, guid text, updated text, content text, tags text, unread text, marked text, added text)");
|
|
||||||
|
|
||||||
window.setTimeout("update_offline_data(0)", 100);
|
window.setTimeout("update_offline_data(0)", 100);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue