Show
Ignore:
Timestamp:
02/08/03 23:12:09 (21 years ago)
Author:
jalet
Message:

Life time counter for users and groups added.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/initscripts/pykota-postgresql.sql

    r695 r765  
    1414-- 
    1515-- $Log$ 
     16-- Revision 1.2  2003/02/08 22:12:09  jalet 
     17-- Life time counter for users and groups added. 
     18-- 
    1619-- Revision 1.1  2003/02/05 21:28:17  jalet 
    1720-- Initial import into CVS 
     
    6972                        userid INT4 REFERENCES users(id), 
    7073                        printerid INT4 REFERENCES printers(id), 
     74                        lifepagecounter INT4 DEFAULT 0, 
    7175                        pagecounter INT4 DEFAULT 0, 
    7276                        softlimit INT4, 
     
    8084                         groupid INT4 REFERENCES groups(id), 
    8185                         printerid INT4 REFERENCES printers(id), 
     86                         lifepagecounter INT4 DEFAULT 0, 
    8287                         pagecounter INT4 DEFAULT 0, 
    8388                         softlimit INT4,