Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > d72f09292708003e566485ce22c38ef1 > files > 47

freeradius-web-2.2.8-1.mga4.x86_64.rpm

SET search_path = public, pg_catalog;

--Table structure for table 'badusers'
--
CREATE TABLE badusers (
    id BIGSERIAL PRIMARY KEY,
    username TEXT NOT NULL,
    incidentdate timestamp with time zone DEFAULT 'now' NOT NULL,
    reason TEXT,
    admin TEXT DEFAULT '-'
);
CREATE INDEX badusers_incidentdate_idx ON badusers USING btree (incidentdate);
CREATE INDEX badusers_username_idx ON badusers USING btree (username);