Show
Ignore:
Timestamp:
06/04/04 01:14:11 (20 years ago)
Author:
jalet
Message:

Now stores the job's size in bytes in the database.
Preliminary work on payments storage : database schemas are OK now,
but no code to store payments yet.
Removed schema picture, not relevant anymore.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storages/pgstorage.py

    r1327 r1520  
    2222# 
    2323# $Log$ 
     24# Revision 1.36  2004/06/03 23:14:11  jalet 
     25# Now stores the job's size in bytes in the database. 
     26# Preliminary work on payments storage : database schemas are OK now, 
     27# but no code to store payments yet. 
     28# Removed schema picture, not relevant anymore. 
     29# 
    2430# Revision 1.35  2004/02/02 22:44:16  jalet 
    2531# Preliminary work on Relationnal Database Independance via DB-API 2.0 
     
    223229        elif type(field) == type(0) :     
    224230            typ = "int" 
     231        elif type(field) == type(0L) :     
     232            typ = "int" 
    225233        else :     
    226234            typ = "text"