Changeset 1203 for pykota/trunk/initscripts
- Timestamp:
- 11/23/03 20:01:37 (21 years ago)
- Location:
- pykota/trunk/initscripts
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/initscripts/ldap/pykota.schema
r1200 r1203 163 163 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE ) 164 164 165 # pykotaJobPrice 166 attributetype ( 1.3.6.1.4.1.16868.1.1.23 NAME 'pykotaJobPrice' 167 DESC 'Price of a particular job in the history, float' 168 EQUALITY caseIgnoreIA5Match 169 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 SINGLE-VALUE ) 170 165 171 # 166 172 # PyKota Object Classes … … 201 207 DESC 'An entry in the job history for a printer' 202 208 MUST ( cn $ pykotaUserName $ pykotaPrinterName $ pykotaJobId ) 203 MAY ( pykotaPrinterPageCounter $ pykotaJobSize $ pykotaAction $ pykota FileName $ pykotaTitle $ pykotaCopies $ pykotaOptions ) )209 MAY ( pykotaPrinterPageCounter $ pykotaJobSize $ pykotaAction $ pykotaJobPrice $ pykotaFileName $ pykotaTitle $ pykotaCopies $ pykotaOptions ) ) 204 210 205 211 # pykotaAccountBalance -
pykota/trunk/initscripts/postgresql/pykota-postgresql.sql
r1200 r1203 20 20 -- 21 21 -- $Log$ 22 -- Revision 1.6 2003/11/23 19:01:36 jalet 23 -- Job price added to history 24 -- 22 25 -- Revision 1.5 2003/11/21 14:28:45 jalet 23 26 -- More complete job history. … … 111 114 pagecounter INT4 DEFAULT 0, 112 115 jobsize INT4, 116 jobprice FLOAT, 113 117 action TEXT, 114 118 filename TEXT, -
pykota/trunk/initscripts/postgresql/README.postgresql
r1200 r1203 69 69 This script adds some fields to the print job history, so that 70 70 more complete information will be known. The fields that 71 are added are : filename, title, copies and print command options.72 Also some indexes are created to speed things up.71 are added are : jobprice, filename, title, copies and print 72 command options. Also some indexes are created to speed things up. 73 73 74 74 What is below is for historical reasons only, real people don't use -
pykota/trunk/initscripts/postgresql/upgrade-to-1.16.sql
r1201 r1203 20 20 -- 21 21 -- $Log$ 22 -- Revision 1.2 2003/11/23 19:01:36 jalet 23 -- Job price added to history 24 -- 22 25 -- Revision 1.1 2003/11/21 14:29:14 jalet 23 26 -- Forgot to add this file... … … 39 42 -- Modify the old database schema 40 43 -- 44 ALTER TABLE jobhistory ADD COLUMN jobprice FLOAT; 41 45 ALTER TABLE jobhistory ADD COLUMN filename TEXT; 42 46 ALTER TABLE jobhistory ADD COLUMN title TEXT;