Changeset 2457 for pykota/trunk/initscripts
- Timestamp:
- 09/17/05 23:43:47 (19 years ago)
- Location:
- pykota/trunk/initscripts/postgresql
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/initscripts/postgresql/pykota-postgresql.sql
r2452 r2457 72 72 priceperpage FLOAT DEFAULT 0.0, 73 73 priceperjob FLOAT DEFAULT 0.0, 74 passthrough BOOLEAN DEFAULT 'f',74 passthrough BOOLEAN DEFAULT FALSE, 75 75 maxjobsize INT4); 76 76 -
pykota/trunk/initscripts/postgresql/upgrade-to-1.23.sql
r2452 r2457 37 37 ALTER TABLE printers ADD COLUMN maxjobsize INT4; 38 38 ALTER TABLE printers ADD COLUMN passthrough BOOLEAN; 39 ALTER TABLE printers ALTER COLUMN passthrough SET DEFAULT 'f';39 ALTER TABLE printers ALTER COLUMN passthrough SET DEFAULT FALSE; 40 40 ALTER TABLE jobhistory ADD COLUMN precomputedjobsize INT4; 41 41 ALTER TABLE jobhistory ADD COLUMN precomputedjobprice FLOAT; … … 48 48 -- 49 49 -- Just to be sure 50 UPDATE printers SET passthrough= 'f';50 UPDATE printers SET passthrough=FALSE; 51 51 52 52 --