File: badusers.sql

package info (click to toggle)
freeradius 2.1.10%2Bdfsg-2%2Bsqueeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 16,660 kB
  • ctags: 9,868
  • sloc: ansic: 81,746; sh: 13,128; php: 6,682; perl: 3,358; makefile: 1,410; sql: 1,301; python: 179; tcl: 35; sed: 23; ruby: 22
file content (13 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);