Pull fix from branch_1_1, so proxied EAP replies work
[freeradius.git] / dialup_admin / sql / postgresql / userinfo.sql
1 SET search_path = public, pg_catalog;
2
3 --
4 -- Table structure for table 'userinfo'
5 --
6 CREATE TABLE userinfo (
7     id SERIAL PRIMARY KEY,
8     username TEXT,
9     name TEXT,
10     mail TEXT,
11     department TEXT,
12     workphone TEXT,
13     homephone TEXT,
14     mobile TEXT
15 );
16 CREATE INDEX userinfo_department_idx ON userinfo USING btree (department);
17 CREATE INDEX userinfo_username_idx ON userinfo USING btree (username);
18
19