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

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

Issue 212873003: Store the language code for the address in autofill profile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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_54.sql
diff --git a/components/test/data/web_database/version_54.sql b/components/test/data/web_database/version_54.sql
index 17e5b680c821070668294e9d3fe5029ceb77364a..b6bad8b206696be04cbdeb8c5ed9bcc9d6420e2c 100644
--- a/components/test/data/web_database/version_54.sql
+++ b/components/test/data/web_database/version_54.sql
@@ -26,7 +26,7 @@ INSERT INTO "autofill_dates" VALUES(21,1384299401);
INSERT INTO "autofill_dates" VALUES(21,1384299400);
INSERT INTO "autofill_dates" VALUES(21,1384299403);
INSERT INTO "autofill_dates" VALUES(21,1384299402);
-CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0, origin VARCHAR DEFAULT '');
+CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, street_address VARCHAR, dependent_locality VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, sorting_code VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0, origin VARCHAR DEFAULT '');
Scott Hess - ex-Googler 2014/03/28 19:53:57 Golden files should never be modified, the v54->v5
please use gerrit instead 2014/03/28 22:00:38 This change was originally necessary because versi
Scott Hess - ex-Googler 2014/03/31 17:46:38 Hmm, if I'm reading this right, you're saying that
CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_name VARCHAR, last_name VARCHAR);
CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, number VARCHAR);

Powered by Google App Engine
This is Rietveld 408576698