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

Side by Side Diff: components/test/data/web_database/version_44.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('version','44'); 4 INSERT INTO "meta" VALUES('version','44');
5 INSERT INTO "meta" VALUES('last_compatible_version','44'); 5 INSERT INTO "meta" VALUES('last_compatible_version','44');
6 INSERT INTO "meta" VALUES('Default Search Provider ID Backup','0'); 6 INSERT INTO "meta" VALUES('Default Search Provider ID Backup','0');
7 INSERT INTO "meta" VALUES('Default Search Provider ID Backup Signature',''); 7 INSERT INTO "meta" VALUES('Default Search Provider ID Backup Signature','');
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,last_modified INTEGER DEFAULT 0,sync_guid 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,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR);
9 CREATE TABLE keywords_backup( 9 CREATE TABLE keywords_backup(
10 id INT, 10 id INT,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 CREATE TABLE web_intents_defaults (action VARCHAR,type VARCHAR,url_pattern LONGV ARCHAR,user_date INTEGER,suppression INTEGER,service_url LONGVARCHAR,UNIQUE (act ion, type, url_pattern)); 44 CREATE TABLE web_intents_defaults (action VARCHAR,type VARCHAR,url_pattern LONGV ARCHAR,user_date INTEGER,suppression INTEGER,service_url LONGVARCHAR,UNIQUE (act ion, type, url_pattern));
45 CREATE INDEX autofill_name ON autofill (name); 45 CREATE INDEX autofill_name ON autofill (name);
46 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower); 46 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
47 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id); 47 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
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 web_intents_index ON web_intents (action); 51 CREATE INDEX web_intents_index ON web_intents (action);
52 CREATE INDEX web_intents_default_index ON web_intents_defaults (action); 52 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
53 COMMIT; 53 COMMIT;
OLDNEW
« no previous file with comments | « components/test/data/web_database/version_43.sql ('k') | components/test/data/web_database/version_45.sql » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698