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

Side by Side Diff: components/test/data/web_database/version_45_compatible.sql

Issue 17788002: components/webdata: Break the dependency on chrome/test/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add entry to chrome/unit_tests.isolate to fix swarm build Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
1 PRAGMA foreign_keys=OFF; 1 PRAGMA foreign_keys=OFF;
2 BEGIN TRANSACTION; 2 BEGIN TRANSACTION;
3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR ); 3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR );
4 INSERT INTO "meta" VALUES('Default Search Provider ID','2'); 4 INSERT INTO "meta" VALUES('Default Search Provider ID','2');
5 INSERT INTO "meta" VALUES('version','40'); 5 INSERT INTO "meta" VALUES('version','40');
6 INSERT INTO "meta" VALUES('last_compatible_version','45'); 6 INSERT INTO "meta" VALUES('last_compatible_version','45');
7 INSERT INTO "meta" VALUES('Default Search Provider ID Backup','2'); 7 INSERT INTO "meta" VALUES('Default Search Provider ID Backup','2');
8 INSERT INTO "meta" VALUES('Default Search Provider ID Backup Signature',''); 8 INSERT INTO "meta" VALUES('Default Search Provider ID Backup Signature','');
9 INSERT INTO "meta" VALUES('Builtin Keyword Version','39'); 9 INSERT INTO "meta" VALUES('Builtin Keyword Version','39');
10 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1); 10 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1);
(...skipping 30 matching lines...) Expand all
41 sync_guid TEXT 41 sync_guid TEXT
42 ); 42 );
43 CREATE INDEX autofill_name ON autofill (name); 43 CREATE INDEX autofill_name ON autofill (name);
44 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower); 44 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
45 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id); 45 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
46 CREATE INDEX web_apps_url_index ON web_apps (url); 46 CREATE INDEX web_apps_url_index ON web_apps (url);
47 CREATE INDEX web_intents_index ON web_intents (action); 47 CREATE INDEX web_intents_index ON web_intents (action);
48 CREATE INDEX web_intents_default_index ON web_intents_defaults (action); 48 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
49 COMMIT; 49 COMMIT;
50 50
OLDNEW
« no previous file with comments | « components/test/data/web_database/version_45.sql ('k') | components/test/data/web_database/version_45_invalid.sql » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698