Index: perf/DESIGN.md |
diff --git a/perf/DESIGN.md b/perf/DESIGN.md |
index 0b39cb3196e4aa2730d08fbf2483745d323efa92..2993243e063edd064cb60dd35d04b722b9ece067 100644 |
--- a/perf/DESIGN.md |
+++ b/perf/DESIGN.md |
@@ -197,7 +197,7 @@ GCE): |
Initial setup of the database, the users, and the tables: |
* Create the database and set up permissions. Execute the following after |
- you connect to a MySQL database (not necessary for SQLite). |
+ you connect to a MySQL database. |
CREATE DATABASE skia; |
USE skia; |
@@ -212,7 +212,7 @@ Initial setup of the database, the users, and the tables: |
state. The 'db_conn_string' flag allows to specify the target database. |
By default it will try to connect to the production environment. |
But for testing a local MySQL database can be provided. If it cannot |
- connect to MySQL it will fall back to SQLite. |
+ connect to MySQL it will fall back to a local "test" MySQL database. |
Bring the production database to the latest schema version: |
@@ -222,10 +222,6 @@ Initial setup of the database, the users, and the tables: |
$ migratedb -logtostderr=true -db_conn_string="root:%s@tcp(localhost:3306)/skia?parseTime=true" |
- Bring a local SQLite database to the latest schema version: |
- |
- $ migratedb -logtostderr=true -db_conn_string="" |
- |
Nginx |
----- |