Changeset 2024
- Timestamp:
- 01/11/05 00:23:25 (20 years ago)
- Location:
- pykota/trunk/initscripts
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/initscripts/ldap/pykota.schema
r1997 r2024 220 220 SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 ) 221 221 222 # pykotaBillingCode 223 attributetype ( 1.3.6.1.4.1.16868.1.1.32 NAME 'pykotaBillingCode' 224 DESC 'Optional billing code for the print job' 225 EQUALITY caseIgnoreMatch 226 SUBSTR caseIgnoreSubstringsMatch 227 SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE ) 228 222 229 223 230 # … … 259 266 DESC 'An entry in the job history for a printer' 260 267 MUST ( cn $ pykotaUserName $ pykotaPrinterName $ pykotaJobId ) 261 MAY ( pykota PrinterPageCounter $ pykotaJobSize $ pykotaAction $ pykotaJobPrice $ pykotaFileName $ pykotaTitle $ pykotaCopies $ pykotaOptions $ pykotaHostName $ pykotaJobSizeBytes $ pykotaMD5Sum $ pykotaPages ) )268 MAY ( pykotaBillingCode $ pykotaPrinterPageCounter $ pykotaJobSize $ pykotaAction $ pykotaJobPrice $ pykotaFileName $ pykotaTitle $ pykotaCopies $ pykotaOptions $ pykotaHostName $ pykotaJobSizeBytes $ pykotaMD5Sum $ pykotaPages ) ) 262 269 263 270 # pykotaAccountBalance -
pykota/trunk/initscripts/postgresql/pykota-postgresql.sql
r1994 r2024 20 20 -- 21 21 -- $Log$ 22 -- Revision 1.13 2005/01/10 23:23:25 jalet 23 -- Added the billing code to the history 24 -- 22 25 -- Revision 1.12 2004/12/23 18:40:18 jalet 23 26 -- Added the coefficient table, and many columns to existing tables … … 148 151 md5sum TEXT, 149 152 pages TEXT, 153 billingcode TEXT, 150 154 jobdate TIMESTAMP DEFAULT now(), 151 155 CONSTRAINT checkUserPQuota FOREIGN KEY (userid, printerid) REFERENCES userpquota(userid, printerid));