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; |
- |