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

Side by Side Diff: chrome/test/data/web_database/version_46_backup_corrupt.sql

Issue 11493003: Remove the protector service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix implicit ExtensionSystem -> TemplateURLService dependency Created 8 years 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
(Empty)
1 PRAGMA foreign_keys=OFF;
2 BEGIN TRANSACTION;
3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR );
4 INSERT INTO "meta" VALUES('Default Search Provider ID','0');
5 INSERT INTO "meta" VALUES('version','46');
6 INSERT INTO "meta" VALUES('last_compatible_version','46');
7 INSERT INTO "meta" VALUES('Default Search Provider ID Backup','0');
8 INSERT INTO "meta" VALUES('Default Search Provider ID Backup Signature','');
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);
11 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);
12 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DE FAULT 0);
13 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zi pcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
14 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_n ame VARCHAR, last_name VARCHAR);
15 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
16 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, num ber VARCHAR);
17 CREATE TABLE autofill_profiles_trash ( guid VARCHAR);
18 CREATE TABLE web_app_icons (url LONGVARCHAR,width int,height int,image BLOB, UNI QUE (url, width, height));
19 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
20 CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token BLOB);
21 CREATE TABLE web_intents (service_url LONGVARCHAR,action VARCHAR,type VARCHAR,ti tle LONGVARCHAR,disposition VARCHAR,scheme VARCHAR,UNIQUE (service_url, action, type));
22 CREATE TABLE web_intents_defaults (action VARCHAR,type VARCHAR,url_pattern LONGV ARCHAR,user_date INTEGER,suppression INTEGER,service_url LONGVARCHAR,scheme VARC HAR,UNIQUE (action, type, url_pattern));
23 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,safe_for_au toreplace INTEGER,originating_url VARCHAR,date_created INTEGER DEFAULT 0,usage_c ount INTEGER DEFAULT 0,input_encodings VARCHAR,show_in_default_list INTEGER,sugg est_url VARCHAR,prepopulate_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAU LT 0,instant_url VARCHAR,last_modified INTEGER DEFAULT 0,sync_guid VARCHAR);
24 CREATE TABLE keywords_backup(id INT,short_name TEXT,keyword TEXT,favicon_url TEX T,url TEXT,safe_for_autoreplace INT,originating_url TEXT,date_created INT,usage_ count INT,input_encodings TEXT,show_in_default_list INT,suggest_url TEXT,prepopu late_id INT,created_by_policy INT,instant_url TEXT,last_modified INT,sync_guid T EXT);
25 CREATE INDEX autofill_name ON autofill (name);
26 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
28 CREATE INDEX web_apps_url_index ON web_apps (url);
29 CREATE INDEX web_intents_index ON web_intents (action);
30 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
31 COMMIT;
OLDNEW
« no previous file with comments | « chrome/test/data/web_database/version_44_backup_corrupt.sql ('k') | chrome/test/data/web_database/version_47.sql » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698