Changeset 1531
- Timestamp:
- 06/08/04 19:44:43 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storages/sql.py
r1522 r1531 22 22 # 23 23 # $Log$ 24 # Revision 1.42 2004/06/08 17:44:43 jalet 25 # Payment now gets deleted when the user is deleted 26 # 24 27 # Revision 1.41 2004/06/05 22:03:50 jalet 25 28 # Payments history is now stored in database … … 433 436 # TODO : incorrectly charged (overcharged). 434 437 for q in [ 438 "DELETE FROM payments WHERE userid=%s" % self.doQuote(user.ident), 435 439 "DELETE FROM groupsmembers WHERE userid=%s" % self.doQuote(user.ident), 436 440 "DELETE FROM jobhistory WHERE userid=%s" % self.doQuote(user.ident),