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

Unified Diff: components/test/data/password_manager/login_db_v9_without_use_additional_auth_field.sql

Issue 818443004: Remove use_additional_auth column from logins table. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « components/test/data/password_manager/login_db_v9.sql ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test/data/password_manager/login_db_v9_without_use_additional_auth_field.sql
diff --git a/components/test/data/password_manager/login_db_v7.sql b/components/test/data/password_manager/login_db_v9_without_use_additional_auth_field.sql
similarity index 92%
copy from components/test/data/password_manager/login_db_v7.sql
copy to components/test/data/password_manager/login_db_v9_without_use_additional_auth_field.sql
index 897287860cf28fe9a675d967f0aece5515ceb8ee..57d72fbbc32e952ed2eb9458dc6bdc3facbf7bec 100644
--- a/components/test/data/password_manager/login_db_v7.sql
+++ b/components/test/data/password_manager/login_db_v9_without_use_additional_auth_field.sql
@@ -2,7 +2,7 @@ PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY, value LONGVARCHAR);
INSERT INTO "meta" VALUES('last_compatible_version','1');
-INSERT INTO "meta" VALUES('version','7');
+INSERT INTO "meta" VALUES('version','9');
CREATE TABLE logins (
origin_url VARCHAR NOT NULL,
action_url VARCHAR,
@@ -21,7 +21,6 @@ password_type INTEGER,
possible_usernames BLOB,
times_used INTEGER,
form_data BLOB,
-use_additional_auth INTEGER,
date_synced INTEGER,
display_name VARCHAR,
avatar_url VARCHAR,
@@ -39,14 +38,13 @@ X'', /* password_value */
'https://accounts.google.com/', /* signon_realm */
1, /* ssl_valid */
1, /* preferred */
-1402955745, /* date_created */
+13047429345000000, /* date_created */
0, /* blacklisted_by_user */
0, /* scheme */
0, /* password_type */
X'00000000', /* possible_usernames */
1, /* times_used */
X'18000000020000000000000000000000000000000000000000000000', /* form_data */
-NULL, /* use_additional_auth */
0, /* date_synced */
'', /* display_name */
'', /* avatar_url */
@@ -64,14 +62,13 @@ X'', /* password_value */
'https://accounts.google.com/', /* signon_realm */
1, /* ssl_valid */
1, /* preferred */
-1402950000, /* date_created */
+13047423600000000, /* date_created */
0, /* blacklisted_by_user */
0, /* scheme */
0, /* password_type */
X'00000000', /* possible_usernames */
1, /* times_used */
X'18000000020000000000000000000000000000000000000000000000', /* form_data */
-NULL, /* use_additional_auth */
0, /* date_synced */
'', /* display_name */
'', /* avatar_url */
@@ -80,4 +77,3 @@ NULL, /* use_additional_auth */
);
CREATE INDEX logins_signon ON logins (signon_realm);
COMMIT;
-
« no previous file with comments | « components/test/data/password_manager/login_db_v9.sql ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698