Fix SQL error

This commit is contained in:
Dan Stillman 2008-07-29 17:49:04 +00:00
parent f831190d4e
commit 63ff94f39a

View File

@ -266,7 +266,7 @@ CREATE TABLE proxies (
CREATE TABLE proxyHosts (
hostID INTEGER PRIMARY KEY,
proxyID INTEGER,
hostname TEXT
hostname TEXT,
FOREIGN KEY (proxyID) REFERENCES proxies(proxyID)
);
CREATE INDEX proxyHosts_proxyID ON proxyHosts(proxyID);