It was overkill using BIGINT for AcctStartDelay and AcctStopDelay. Changed back to...
authorpnixon <pnixon>
Tue, 10 Jul 2007 07:23:44 +0000 (07:23 +0000)
committerpnixon <pnixon>
Tue, 10 Jul 2007 07:23:44 +0000 (07:23 +0000)
doc/examples/postgresql.sql

index 49c6f7b..68ada84 100644 (file)
@@ -38,8 +38,8 @@ CREATE TABLE radacct (
        XAscendSessionSvrKey    VARCHAR(10),
        FramedProtocol          VARCHAR(32),
        FramedIPAddress         INET,
-       AcctStartDelay          BIGINT,
-       AcctStopDelay           BIGINT
+       AcctStartDelay          INTEGER,
+       AcctStopDelay           INTEGER 
 );
 -- This index may be usefull..
 -- CREATE UNIQUE INDEX radacct_whoson on radacct (AcctStartTime, nasipaddress);