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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 BEGIN TRANSACTION;
2 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY,value LONGVARCHAR) ;
3 INSERT INTO "meta" VALUES('version','21');
4 INSERT INTO "meta" VALUES('last_compatible_version','16');
5 CREATE TABLE android_urls(id INTEGER PRIMARY KEY, raw_url LONGVARCHAR, created_t ime INTEGER NOT NULL, last_visit_time INTEGER NOT NULL, url_id INTEGER NOT NULL, favicon_id INTEGER DEFAULT NULL, bookmark INTEGER DEFAULT 0);
6 INSERT INTO "android_urls" VALUES(1,'http://google.com/',1,1,1,1,0);
7 INSERT INTO "android_urls" VALUES(4,'www.google.com/',1,1,3,1,1);
8 COMMIT;
9
10
OLDNEW
« 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