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

Side by Side Diff: components/test/data/web_database/version_45.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','45'); 5 INSERT INTO "meta" VALUES('version','45');
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 -- following statements are required for testing migration to version 46 49 -- following statements are required for testing migration to version 46
50 INSERT INTO web_intents VALUES ('http://poodles.com/fuzzer', 'fuzz', 'poodle/*', 'Poodle Fuzzer', 'window'); 50 INSERT INTO web_intents VALUES ('http://poodles.com/fuzzer', 'fuzz', 'poodle/*', 'Poodle Fuzzer', 'window');
51 INSERT INTO web_intents_defaults VALUES ('fuzz', 'poodle/*', '', 0, 0, 'http://p oodles.com/fuzzer'); 51 INSERT INTO web_intents_defaults VALUES ('fuzz', 'poodle/*', '', 0, 0, 'http://p oodles.com/fuzzer');
52 COMMIT; 52 COMMIT;
53 53
OLDNEW
« no previous file with comments | « components/test/data/web_database/version_44.sql ('k') | components/test/data/web_database/version_45_compatible.sql » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698