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

Side by Side Diff: components/test/data/web_database/version_49.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
« no previous file with comments | « components/test/data/web_database/version_48.sql ('k') | components/webdata/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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','49'); 4 INSERT INTO "meta" VALUES('version','49');
5 INSERT INTO "meta" VALUES('last_compatible_version','48'); 5 INSERT INTO "meta" VALUES('last_compatible_version','48');
6 INSERT INTO "meta" VALUES('Builtin Keyword Version','54'); 6 INSERT INTO "meta" VALUES('Builtin Keyword Version','54');
7 INSERT INTO "meta" VALUES('Default Search Provider ID','2'); 7 INSERT INTO "meta" VALUES('Default Search Provider ID','2');
8 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1); 8 CREATE TABLE autofill (name VARCHAR, value VARCHAR, value_lower VARCHAR, pair_id INTEGER PRIMARY KEY, count INTEGER DEFAULT 1);
9 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); 9 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);
10 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DE FAULT 0); 10 CREATE TABLE autofill_dates ( pair_id INTEGER DEFAULT 0, date_created INTEGER DE FAULT 0);
(...skipping 11 matching lines...) Expand all
22 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL); 22 CREATE TABLE web_apps (url LONGVARCHAR UNIQUE,has_all_images INTEGER NOT NULL);
23 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR , title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, a ction, scheme, type)); 23 CREATE TABLE web_intents ( service_url LONGVARCHAR, action VARCHAR, type VARCHAR , title LONGVARCHAR, disposition VARCHAR, scheme VARCHAR, UNIQUE (service_url, a ction, scheme, type));
24 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LO NGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, sche me VARCHAR, UNIQUE (action, scheme, type, url_pattern)); 24 CREATE TABLE web_intents_defaults ( action VARCHAR, type VARCHAR, url_pattern LO NGVARCHAR, user_date INTEGER, suppression INTEGER, service_url LONGVARCHAR, sche me VARCHAR, UNIQUE (action, scheme, type, url_pattern));
25 CREATE INDEX autofill_name ON autofill (name); 25 CREATE INDEX autofill_name ON autofill (name);
26 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower); 26 CREATE INDEX autofill_name_value_lower ON autofill (name, value_lower);
27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id); 27 CREATE INDEX autofill_dates_pair_id ON autofill_dates (pair_id);
28 CREATE INDEX web_apps_url_index ON web_apps (url); 28 CREATE INDEX web_apps_url_index ON web_apps (url);
29 CREATE INDEX web_intents_index ON web_intents (action); 29 CREATE INDEX web_intents_index ON web_intents (action);
30 CREATE INDEX web_intents_default_index ON web_intents_defaults (action); 30 CREATE INDEX web_intents_default_index ON web_intents_defaults (action);
31 COMMIT; 31 COMMIT;
OLDNEW
« no previous file with comments | « components/test/data/web_database/version_48.sql ('k') | components/webdata/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698