Sophie

Sophie

distrib > Mageia > 3 > x86_64 > by-pkgid > 95b3ec13a76ebea22ecc284d191292fd > files > 47

freeradius-web-2.2.0-4.mga3.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);