Difference between revisions of "Database Table: openproxy"
From Dreamwidth Notes
(Created page with 'openproxy =Definition= <source lang="sql"> CREATE TABLE openproxy ( addr VARCHAR(15) NOT NULL, status ENUM('proxy', 'clear'), ...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE openproxy ( | CREATE TABLE openproxy ( | ||
Line 11: | Line 11: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Global database]] | [[Global database]] | ||
+ | |||
+ | [[Category: Database Tables|openproxy]] |
Revision as of 18:18, 31 March 2009
Definition
CREATE TABLE openproxy ( addr VARCHAR(15) NOT NULL, STATUS ENUM('proxy', 'clear'), asof INT UNSIGNED NOT NULL, src VARCHAR(80), PRIMARY KEY (addr) )