Show
Ignore:
Timestamp:
04/08/03 22:38:08 (21 years ago)
Author:
jalet
Message:

The last job Id is saved now for each printer, this will probably
allow other accounting methods in the future.

Files:
1 modified

Legend:

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

    r873 r887  
    2020-- 
    2121-- $Log$ 
     22-- Revision 1.7  2003/04/08 20:38:08  jalet 
     23-- The last job Id is saved now for each printer, this will probably 
     24-- allow other accounting methods in the future. 
     25-- 
    2226-- Revision 1.6  2003/03/29 13:45:27  jalet 
    2327-- GPL paragraphs were incorrectly (from memory) copied into the sources. 
     
    8488CREATE TABLE printers(id SERIAL PRIMARY KEY NOT NULL, 
    8589                      printername TEXT UNIQUE NOT NULL, 
     90                      lastjobid TEXT, 
    8691                      lastusername TEXT, 
    8792                      pagecounter INT4 DEFAULT 0);