Commit e96e68f7 authored by Ad Schellevis's avatar Ad Schellevis

(Captiveportal, new) extend sql template

parent 8a492774
...@@ -33,3 +33,19 @@ create table session_info ( ...@@ -33,3 +33,19 @@ create table session_info (
, last_accessed integer , last_accessed integer
, primary key (zoneid, sessionid) , primary key (zoneid, sessionid)
); );
-- session (accounting) restrictions
create table session_restrictions (
zoneid int
, sessionid varchar
, session_timeout int
, primary key (zoneid, sessionid)
) ;
-- accounting state, record the state of (radius) accounting messages
create table accounting_state (
zoneid int
, sessionid varchar
, state varchar
, primary key (zoneid, sessionid)
) ;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment