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

Side by Side Diff: components/test/data/web_database/version_26.sql

Issue 17788002: components/webdata: Break the dependency on chrome/test/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add entry to chrome/unit_tests.isolate to fix swarm build Created 7 years, 5 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
OLDNEW
1 PRAGMA foreign_keys=OFF; 1 PRAGMA foreign_keys=OFF;
2 BEGIN TRANSACTION; 2 BEGIN TRANSACTION;
3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY,value LONGVARCHAR) ; 3 CREATE TABLE meta(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY,value LONGVARCHAR) ;
4 INSERT INTO "meta" VALUES('version','26'); 4 INSERT INTO "meta" VALUES('version','26');
5 INSERT INTO "meta" VALUES('last_compatible_version','26'); 5 INSERT INTO "meta" VALUES('last_compatible_version','26');
6 INSERT INTO "meta" VALUES('Builtin Keyword Version','29'); 6 INSERT INTO "meta" VALUES('Builtin Keyword Version','29');
7 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); 7 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);
8 CREATE TABLE logins (origin_url VARCHAR NOT NULL, action_url VARCHAR,username_el ement VARCHAR, username_value VARCHAR,password_element VARCHAR, password_value B LOB, submit_element VARCHAR,signon_realm VARCHAR NOT NULL,ssl_valid INTEGER NOT NULL,preferred INTEGER NOT NULL,date_created INTEGER NOT NULL,blacklisted_by_use r INTEGER NOT NULL,scheme INTEGER NOT NULL,UNIQUE (origin_url, username_element, username_value, password_element, submit_element, signon_realm)); 8 CREATE TABLE logins (origin_url VARCHAR NOT NULL, action_url VARCHAR,username_el ement VARCHAR, username_value VARCHAR,password_element VARCHAR, password_value B LOB, submit_element VARCHAR,signon_realm VARCHAR NOT NULL,ssl_valid INTEGER NOT NULL,preferred INTEGER NOT NULL,date_created INTEGER NOT NULL,blacklisted_by_use r INTEGER NOT NULL,scheme INTEGER NOT NULL,UNIQUE (origin_url, username_element, username_value, password_element, submit_element, signon_realm));
9 CREATE TABLE web_app_icons (url LONGVARCHAR,width int,height int,image BLOB, UNI QUE (url, width, height)); 9 CREATE TABLE web_app_icons (url LONGVARCHAR,width int,height int,image BLOB, UNI QUE (url, width, height));
10 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL); 10 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
11 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR,pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1); 11 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR,pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1);
12 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0,date_created INTEGER DEF AULT 0); 12 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0,date_created INTEGER DEF AULT 0);
13 CREATE TABLE autofill_profiles ( label VARCHAR,unique_id INTEGER PRIMARY KEY, fi rst_name VARCHAR,middle_name VARCHAR, last_name VARCHAR, email VARCHAR,company_n ame VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR,city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR,phone VARCHAR, fax VARCHAR); 13 CREATE TABLE autofill_profiles ( label VARCHAR,unique_id INTEGER PRIMARY KEY, fi rst_name VARCHAR,middle_name VARCHAR, last_name VARCHAR, email VARCHAR,company_n ame VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR,city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR,phone VARCHAR, fax VARCHAR);
14 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY,name_on _card VARCHAR, type VARCHAR, card_number VARCHAR,expiration_month INTEGER, expir ation_year INTEGER,verification_code VARCHAR, billing_address VARCHAR,shipping_a ddress VARCHAR, card_number_encrypted BLOB,verification_code_encrypted BLOB); 14 CREATE TABLE credit_cards ( label VARCHAR, unique_id INTEGER PRIMARY KEY,name_on _card VARCHAR, type VARCHAR, card_number VARCHAR,expiration_month INTEGER, expir ation_year INTEGER,verification_code VARCHAR, billing_address VARCHAR,shipping_a ddress VARCHAR, card_number_encrypted BLOB,verification_code_encrypted BLOB);
15 CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token BLOB); 15 CREATE TABLE token_service (service VARCHAR PRIMARY KEY NOT NULL,encrypted_token BLOB);
16 CREATE INDEX logins_signon ON logins (signon_realm); 16 CREATE INDEX logins_signon ON logins (signon_realm);
17 CREATE INDEX web_apps_url_index ON web_apps (url); 17 CREATE INDEX web_apps_url_index ON web_apps (url);
18 CREATE INDEX autofill_name ON autofill (name); 18 CREATE INDEX autofill_name ON autofill (name);
19 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower); 19 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
20 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id); 20 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
21 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label); 21 CREATE INDEX autofill_profiles_label_index ON autofill_profiles (label);
22 CREATE INDEX credit_cards_label_index ON credit_cards (label); 22 CREATE INDEX credit_cards_label_index ON credit_cards (label);
23 COMMIT; 23 COMMIT;
OLDNEW
« no previous file with comments | « components/test/data/web_database/version_25.sql ('k') | components/test/data/web_database/version_27.sql » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698