Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1511)

Unified Diff: chrome/test/data/History/history.21.sql

Issue 10067030: Upgrade the history database to version 23 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Sync and update test data Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/profiles/typical_history/Default/History » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/History/history.21.sql
diff --git a/chrome/test/data/History/history.21.sql b/chrome/test/data/History/history.21.sql
new file mode 100644
index 0000000000000000000000000000000000000000..e1c1773265058ea1a15ea21226e0e3cceb690f30
--- /dev/null
+++ b/chrome/test/data/History/history.21.sql
@@ -0,0 +1,10 @@
+BEGIN TRANSACTION;
+CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY,value LONGVARCHAR);
+INSERT INTO "meta" VALUES('version','21');
+INSERT INTO "meta" VALUES('last_compatible_version','16');
+CREATE TABLE android_urls(id INTEGER PRIMARY KEY, raw_url LONGVARCHAR, created_time INTEGER NOT NULL, last_visit_time INTEGER NOT NULL, url_id INTEGER NOT NULL,favicon_id INTEGER DEFAULT NULL, bookmark INTEGER DEFAULT 0);
+INSERT INTO "android_urls" VALUES(1,'http://google.com/',1,1,1,1,0);
+INSERT INTO "android_urls" VALUES(4,'www.google.com/',1,1,3,1,1);
+COMMIT;
+
+
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/data/profiles/typical_history/Default/History » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698