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

Unified Diff: components/test/data/web_database/version_70.sql

Issue 2844463004: Rename card 'type' into 'issuer network.' (Closed)
Patch Set: read -> use Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: components/test/data/web_database/version_70.sql
diff --git a/components/test/data/web_database/version_70.sql b/components/test/data/web_database/version_70.sql
index 0d80e575dbbc378afd424597a357b7bf91977570..500d2a68006b7182ac794afad4966b77bead45e4 100644
--- a/components/test/data/web_database/version_70.sql
+++ b/components/test/data/web_database/version_70.sql
@@ -20,7 +20,7 @@ CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
CREATE TABLE autofill_profile_phones ( guid VARCHAR, number VARCHAR);
CREATE TABLE autofill_profiles_trash ( guid VARCHAR);
CREATE TABLE masked_credit_cards (id VARCHAR,status VARCHAR,name_on_card VARCHAR,type VARCHAR,last_four VARCHAR,exp_month INTEGER DEFAULT 0,exp_year INTEGER DEFAULT 0, billing_address_id VARCHAR);
-INSERT INTO "masked_credit_cards" VALUES('card_1','status','bob','MASKED','1234',12,2050,'address_1');
+INSERT INTO "masked_credit_cards" VALUES('card_1','status','bob','VISA','1234',12,2050,'address_1');
CREATE TABLE unmasked_credit_cards (id VARCHAR,card_number_encrypted VARCHAR, use_count INTEGER NOT NULL DEFAULT 0, use_date INTEGER NOT NULL DEFAULT 0, unmask_date INTEGER NOT NULL DEFAULT 0);
CREATE TABLE server_card_metadata (id VARCHAR NOT NULL,use_count INTEGER NOT NULL DEFAULT 0, use_date INTEGER NOT NULL DEFAULT 0);
INSERT INTO "server_card_metadata" VALUES('card_1', 0, 0);
« no previous file with comments | « components/payments/core/autofill_payment_instrument.cc ('k') | components/test/data/web_database/version_71.sql » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698