OLD | NEW |
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','30'); | 4 INSERT INTO "meta" VALUES('version','30'); |
5 INSERT INTO "meta" VALUES('last_compatible_version','30'); | 5 INSERT INTO "meta" VALUES('last_compatible_version','30'); |
6 INSERT INTO "meta" VALUES('Default Search Provider ID','2'); | 6 INSERT INTO "meta" VALUES('Default Search Provider ID','2'); |
7 INSERT INTO "meta" VALUES('Builtin Keyword Version','30'); | 7 INSERT INTO "meta" VALUES('Builtin Keyword Version','30'); |
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,6245,0,'{google:baseURL}search?{google:RLZ}sourceid=chrome-in
stant&ie={inputEncoding}&q={searchTerms}'); | 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,6245,0,'{google:baseURL}search?{google:RLZ}sourceid=chrome-in
stant&ie={inputEncoding}&q={searchTerms}'); |
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,6262,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,6262,0,''); |
(...skipping 11 matching lines...) Expand all Loading... |
22 INSERT INTO "credit_cards" VALUES('2',4,'Billy X Jean','','',7,2017,'','3','',X'
763130EB3DC27FA61AAC9EAC92B303978DD7B62E901B4D9DFB459905E09AAAE7AE7BA1',X'',1287
508123); | 22 INSERT INTO "credit_cards" VALUES('2',4,'Billy X Jean','','',7,2017,'','3','',X'
763130EB3DC27FA61AAC9EAC92B303978DD7B62E901B4D9DFB459905E09AAAE7AE7BA1',X'',1287
508123); |
23 CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token
BLOB); | 23 CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token
BLOB); |
24 CREATE INDEX logins_signon ON logins (signon_realm); | 24 CREATE INDEX logins_signon ON logins (signon_realm); |
25 CREATE INDEX web_apps_url_index ON web_apps (url); | 25 CREATE INDEX web_apps_url_index ON web_apps (url); |
26 CREATE INDEX autofill_name ON autofill (name); | 26 CREATE INDEX autofill_name ON autofill (name); |
27 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower); | 27 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower); |
28 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id); | 28 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id); |
29 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label); | 29 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label); |
30 CREATE INDEX credit_cards_label_index ON credit_cards (label); | 30 CREATE INDEX credit_cards_label_index ON credit_cards (label); |
31 COMMIT; | 31 COMMIT; |
OLD | NEW |