Changeset 2318

Show
Ignore:
Timestamp:
06/17/05 09:03:19 (19 years ago)
Author:
jerome
Message:

I forgot the description attribute for billing codes...
Severity : I'm severely stupid !

Location:
pykota/trunk/initscripts
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/initscripts/ldap/pykota.schema

    r2317 r2318  
    309309        DESC 'Allowed billing codes' 
    310310        MUST ( cn $ pykotaBillingCode ) 
    311         MAY ( pykotaPageCounter $ pykotaBalance ) ) 
     311        MAY ( pykotaPageCounter $ pykotaBalance $ description ) ) 
    312312         
    313313# pykotaObject - Use it if you have to  
  • pykota/trunk/initscripts/postgresql/pykota-postgresql.sql

    r2317 r2318  
    172172CREATE TABLE billingcodes (id SERIAL PRIMARY KEY NOT NULL, 
    173173                           label TEXT UNIQUE NOT NULL, 
     174                           description TEXT, 
    174175                           balance FLOAT DEFAULT 0.0, 
    175176                           pagecounter INT4 DEFAULT 0); 
  • pykota/trunk/initscripts/postgresql/upgrade-to-1.23.sql

    r2317 r2318  
    5555CREATE TABLE billingcodes (id SERIAL PRIMARY KEY NOT NULL, 
    5656                           label TEXT UNIQUE NOT NULL, 
     57                           description TEXT, 
    5758                           balance FLOAT DEFAULT 0.0, 
    5859                           pagecounter INT4 DEFAULT 0);