Changeset 85
- Timestamp:
- 09/11/25 17:47:47 (3 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dnsbl/dnsbl.sql
r32 r85 15 15 listme boolean DEFAULT false, 16 16 orgid integer, 17 "level"integer DEFAULT 0,17 level integer DEFAULT 0, 18 18 comments text DEFAULT ''::text, 19 19 parent cidr NOT NULL, 20 ipcount integer NOT NULL 20 ipcount integer NOT NULL, 21 exclude boolean DEFAULT false, 22 added timestamp with time zone DEFAULT now() 21 23 ); 22 24 … … 31 33 s4list boolean DEFAULT false, 32 34 added timestamp with time zone DEFAULT now(), 33 parent cidr NOT NULL 35 parent cidr NOT NULL, 36 exclude boolean DEFAULT false 34 37 ); 35 38 … … 56 59 ); 57 60 61 CREATE SEQUENCE orgs_orgid_seq 62 START WITH 1 63 INCREMENT BY 1 64 NO MINVALUE 65 NO MAXVALUE 66 CACHE 1; 67 ALTER SEQUENCE orgs_orgid_seq OWNED BY orgs.orgid; 68 ALTER TABLE ONLY orgs ALTER COLUMN orgid SET DEFAULT nextval('orgs_orgid_seq'::regclass); 69 58 70 59 71 -- … … 78 90 s4list boolean DEFAULT false, 79 91 origadded timestamp with time zone DEFAULT now(), 80 delisted timestamp with time zone DEFAULT now() 92 delisted timestamp with time zone DEFAULT now(), 93 exclude boolean DEFAULT false 81 94 ); 82 95 … … 162 175 12 46 163 176 11 50 164 10 5 4165 9 58166 8 62177 10 56 178 9 64 179 8 72 167 180 7 2147483648 168 181 6 2147483648
Note:
See TracChangeset
for help on using the changeset viewer.