commit 051f94a3d9ddb5ce43d6ac207c15ddcab8d6d8b2 Author: Isis Lovecruft isis@torproject.org Date: Sat Mar 21 01:13:36 2015 +0000
Remove outdated section on BridgeDB SQL schema updating from README.rst. --- README.rst | 18 ------------------ 1 file changed, 18 deletions(-)
diff --git a/README.rst b/README.rst index 47a78d7..01b4e2c 100644 --- a/README.rst +++ b/README.rst @@ -291,24 +291,6 @@ blocked bridges from the responses it gives to clients requesting bridges.
------------------------- -Updating the SQL schema: ------------------------- - -Make sure that SQLite3 is installed. (You should have installed it -already during the setup and installation stage.) To update, do:: - - sqlite3 path/to/bridgedist.db.sqlite - -Enter the following commands at the ``sqlite>`` prompt:: - - CREATE TABLE BlockedBridges ( id INTEGER PRIMARY KEY NOT NULL, hex_key, blocking_country); - CREATE INDEX BlockedBridgesBlockingCountry on BlockedBridges(hex_key); - CREATE TABLE WarnedEmails ( email PRIMARY KEY NOT NULL, when_warned); - CREATE INDEX WarnedEmailsWasWarned on WarnedEmails ( email ); - REPLACE INTO Config VALUES ( 'schema-version', 2 ); - - ================ Testing BridgeDB ================
tor-commits@lists.torproject.org