Fix SQL error
This commit is contained in:
parent
fe3ff13571
commit
4945737355
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
Loading…
Add table
Reference in a new issue