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

Side by Side Diff: chrome/test/data/web_database/version_37.sql

Issue 7232023: Added last_modified field to TemplateURL and database. Updated unit tests, including refactoring ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/webdata/web_database_migration_unittest.cc ('k') | media/base/clock_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 PRAGMA foreign_keys=OFF;
2 BEGIN TRANSACTION;
3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY,value LONGVARCHAR) ;
4 INSERT INTO "meta" VALUES('version','37');
5 INSERT INTO "meta" VALUES('last_compatible_version','37');
6 INSERT INTO "meta" VALUES('Default Search Provider ID','2');
7 INSERT INTO "meta" VALUES('Builtin Keyword Version','33');
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,logo_id INTEGER DEFAULT 0,created_by_policy INTEGER DEFAULT 0,instant_ur l VARCHAR);
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,6262,0,'{google:baseURL}webhp?{google:RLZ}sourceid=chrome-ins tant&ie={inputEncoding}&ion=1{searchTerms}&nord=1');
10 CREATE TABLE logins (origin_url VARCHAR NOT NULL, action_url VARCHAR, username_e lement VARCHAR, username_value VARCHAR, password_element VARCHAR, password_value BLOB, submit_element VARCHAR, signon_realm VARCHAR NOT NULL,ssl_valid INTEGER N OT NULL,preferred INTEGER NOT NULL,date_created INTEGER NOT NULL,blacklisted_by_ user INTEGER NOT NULL,scheme INTEGER NOT NULL,UNIQUE (origin_url, username_eleme nt, username_value, password_element, submit_element, signon_realm));
11 CREATE TABLE web_app_icons (url LONGVARCHAR,width int,height int,image BLOB, UNI QUE (url, width, height));
12 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
13 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1);
14 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DE FAULT 0);
15 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zi pcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
16 CREATE TABLE autofill_profile_names ( guid VARCHAR, first_name VARCHAR, middle_n ame VARCHAR, last_name VARCHAR);
17 CREATE TABLE autofill_profile_emails ( guid VARCHAR, email VARCHAR);
18 CREATE TABLE autofill_profile_phones ( guid VARCHAR, type INTEGER DEFAULT 0, num ber VARCHAR);
19 CREATE TABLE credit_cards ( guid VARCHAR PRIMARY KEY, name_on_card VARCHAR, expi ration_month INTEGER, expiration_year INTEGER, card_number_encrypted BLOB, date_ modified INTEGER NOT NULL DEFAULT 0);
20 CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token BLOB);
21 CREATE INDEX logins_signon ON logins (signon_realm);
22 CREATE INDEX web_apps_url_index ON web_apps (url);
23 CREATE INDEX autofill_name ON autofill (name);
24 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
25 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
26 COMMIT;
OLDNEW
« no previous file with comments | « chrome/browser/webdata/web_database_migration_unittest.cc ('k') | media/base/clock_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698