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/postgresql
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • 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);