Changeset 85


Ignore:
Timestamp:
09/11/25 17:47:47 (3 days ago)
Author:
Kris Deugau
Message:

/trunk/dnsbl

Refresh SQL definition

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dnsbl/dnsbl.sql

    r32 r85  
    1515    listme boolean DEFAULT false,
    1616    orgid integer,
    17     "level" integer DEFAULT 0,
     17    level integer DEFAULT 0,
    1818    comments text DEFAULT ''::text,
    1919    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()
    2123);
    2224
     
    3133    s4list boolean DEFAULT false,
    3234    added timestamp with time zone DEFAULT now(),
    33     parent cidr NOT NULL
     35    parent cidr NOT NULL,
     36    exclude boolean DEFAULT false
    3437);
    3538
     
    5659);
    5760
     61CREATE SEQUENCE orgs_orgid_seq
     62    START WITH 1
     63    INCREMENT BY 1
     64    NO MINVALUE
     65    NO MAXVALUE
     66    CACHE 1;
     67ALTER SEQUENCE orgs_orgid_seq OWNED BY orgs.orgid;
     68ALTER TABLE ONLY orgs ALTER COLUMN orgid SET DEFAULT nextval('orgs_orgid_seq'::regclass);
     69
    5870
    5971--
     
    7890    s4list boolean DEFAULT false,
    7991    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
    8194);
    8295
     
    16217512      46
    16317611      50
    164 10      54
    165 9       58
    166 8       62
     17710      56
     1789       64
     1798       72
    1671807       2147483648
    1681816       2147483648
Note: See TracChangeset for help on using the changeset viewer.