Fix SQL error

This commit is contained in:
Dan Stillman 2008-07-29 17:49:04 +00:00
parent fe3ff13571
commit 4945737355

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);