Show
Ignore:
Timestamp:
09/17/05 16:29:43 (19 years ago)
Author:
jerome
Message:

Upgraded database schema.
Added -i | --ingroups command line option to repykota.
Added -C | --comment command line option to edpykota.
Added 'noquota', 'noprint', and 'nochange' as switches for edpykota's
-l | --limitby command line option.
Severity : entirely new features, in need of testers :-)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/initscripts/postgresql/pykota-postgresql.sql

    r2342 r2452  
    8787                        datelimit TIMESTAMP, 
    8888                        maxjobsize INT4, 
    89                         temporarydenied BOOLEAN DEFAULT 'f', 
    9089                        warncount INT4 DEFAULT 0);  
    9190CREATE INDEX userpquota_u_id_ix ON userpquota (userid); 
     
    155154                       userid INT4 REFERENCES users(id), 
    156155                       amount FLOAT, 
     156                       description TEXT, 
    157157                       date TIMESTAMP DEFAULT now()); 
    158158CREATE INDEX payments_date_ix ON payments (date);