| 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','22'); | 4 INSERT INTO "meta" VALUES('version','22'); |
| 5 INSERT INTO "meta" VALUES('last_compatible_version','21'); | 5 INSERT INTO "meta" VALUES('last_compatible_version','21'); |
| 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','29'); | 7 INSERT INTO "meta" VALUES('Builtin Keyword Version','29'); |
| 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); | 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); |
| 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); | 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); |
| 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); | 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); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY, name_o
n_card VARCHAR, type VARCHAR,card_number VARCHAR, expiration_month INTEGER, expi
ration_year INTEGER, verification_code VARCHAR, billing_address VARCHAR, shippin
g_address VARCHAR, card_number_encrypted BLOB, verification_code_encrypted BLOB)
; | 23 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY, name_o
n_card VARCHAR, type VARCHAR,card_number VARCHAR, expiration_month INTEGER, expi
ration_year INTEGER, verification_code VARCHAR, billing_address VARCHAR, shippin
g_address VARCHAR, card_number_encrypted BLOB, verification_code_encrypted BLOB)
; |
| 24 CREATE INDEX logins_signon ON logins (signon_realm); | 24 CREATE INDEX logins_signon ON logins (signon_realm); |
| 25 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash); | 25 CREATE INDEX ie7_logins_hash ON ie7_logins (url_hash); |
| 26 CREATE INDEX web_apps_url_index ON web_apps (url); | 26 CREATE INDEX web_apps_url_index ON web_apps (url); |
| 27 CREATE INDEX autofill_name ON autofill (name); | 27 CREATE INDEX autofill_name ON autofill (name); |
| 28 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower); | 28 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower); |
| 29 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id); | 29 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id); |
| 30 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label); | 30 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label); |
| 31 CREATE INDEX credit_cards_label_index ON credit_cards (label); | 31 CREATE INDEX credit_cards_label_index ON credit_cards (label); |
| 32 COMMIT; | 32 COMMIT; |
| OLD | NEW |