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

Side by Side Diff: components/test/data/web_database/version_34.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('Builtin Keyword Version','33'); 5 INSERT INTO "meta" VALUES('Builtin Keyword Version','33');
6 INSERT INTO "meta" VALUES('version','34'); 6 INSERT INTO "meta" VALUES('version','34');
7 INSERT INTO "meta" VALUES('last_compatible_version','34'); 7 INSERT INTO "meta" VALUES('last_compatible_version','34');
8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keywor d VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_def ault_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_crea ted INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,sugg est_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DE FAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_ur l VARCHAR); 8 CREATE TABLE keywords (id INTEGER PRIMARY KEY,short_name VARCHAR NOT NULL,keywor d VARCHAR NOT NULL,favicon_url VARCHAR NOT NULL,url VARCHAR NOT NULL,show_in_def ault_list INTEGER,safe_for_autoreplace INTEGER,originating_url VARCHAR,date_crea ted INTEGER DEFAULT 0,usage_count INTEGER DEFAULT 0,input_encodings VARCHAR,sugg est_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,autogenerate_keyword INTEGER DE FAULT 0,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_ur l VARCHAR);
9 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/fav icon.ico','{google:baseURL}search?{google:RLZ}{google:acceptedSuggestion}{google :originalQueryForSuggestion}sourceid=chrome&ie={inputEncoding}&q={searchTerms}', 1,1,'',0,0,'UTF-8','{google:baseSuggestURL}search?client=chrome&hl={language}&q= {searchTerms}',1,1,6256,0,'{google:baseURL}webhp?{google:RLZ}sourceid=chrome-ins tant&ie={inputEncoding}&ion=1{searchTerms}&nord=1'); 9 INSERT INTO "keywords" VALUES(2,'Google','google.com','http://www.google.com/fav icon.ico','{google:baseURL}search?{google:RLZ}{google:acceptedSuggestion}{google :originalQueryForSuggestion}sourceid=chrome&ie={inputEncoding}&q={searchTerms}', 1,1,'',0,0,'UTF-8','{google:baseSuggestURL}search?client=chrome&hl={language}&q= {searchTerms}',1,1,6256,0,'{google:baseURL}webhp?{google:RLZ}sourceid=chrome-ins tant&ie={inputEncoding}&ion=1{searchTerms}&nord=1');
10 INSERT INTO "keywords" VALUES(3,'Yahoo!','yahoo.com','http://search.yahoo.com/fa vicon.ico','http://search.yahoo.com/search?ei={inputEncoding}&fr=crmas&p={search Terms}',1,1,'',0,0,'UTF-8','http://ff.search.yahoo.com/gossip?output=fxjson&comm and={searchTerms}',2,0,6273,0,''); 10 INSERT INTO "keywords" VALUES(3,'Yahoo!','yahoo.com','http://search.yahoo.com/fa vicon.ico','http://search.yahoo.com/search?ei={inputEncoding}&fr=crmas&p={search Terms}',1,1,'',0,0,'UTF-8','http://ff.search.yahoo.com/gossip?output=fxjson&comm and={searchTerms}',2,0,6273,0,'');
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 INSERT INTO "autofill_profile_phones" VALUES('F19484ED-363F-4506-997E-E0F23EA834 AB',1,'4155512222'); 45 INSERT INTO "autofill_profile_phones" VALUES('F19484ED-363F-4506-997E-E0F23EA834 AB',1,'4155512222');
46 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expi ration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_ modified INTEGER NOT NULL DEFAULT 0); 46 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expi ration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_ modified INTEGER NOT NULL DEFAULT 0);
47 CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token BLOB); 47 CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token BLOB);
48 CREATE INDEX logins_signon ON logins (signon_realm); 48 CREATE INDEX logins_signon ON logins (signon_realm);
49 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash); 49 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash);
50 CREATE INDEX web_apps_url_index ON web_apps (url); 50 CREATE INDEX web_apps_url_index ON web_apps (url);
51 CREATE INDEX autofill_name ON autofill (name); 51 CREATE INDEX autofill_name ON autofill (name);
52 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower); 52 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
53 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id); 53 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
54 COMMIT; 54 COMMIT;
OLDNEW
« no previous file with comments | « components/test/data/web_database/version_33.sql ('k') | components/test/data/web_database/version_35.sql » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698