~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/database.py

  • Committer: Matt Giuca
  • Date: 2010-07-23 06:27:02 UTC
  • mfrom: (1818.1.1 project-extensions)
  • Revision ID: matt.giuca@gmail.com-20100723062702-cknq5zzk1cwf8q2q
Merge from branch project-extensions (changes project_extension.deadline into project_extension.days in the database).
The branch isn't finished; I just want this DB change to be included before we release 1.0.2, in case the rest of the changes for this branch don't make it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
865
865
    id = Int(name="extensionid", primary=True)
866
866
    assessed_id = Int(name="assessedid")
867
867
    assessed = Reference(assessed_id, Assessed.id)
868
 
    deadline = DateTime()
 
868
    days = Int()
869
869
    approver_id = Int(name="approver")
870
870
    approver = Reference(approver_id, User.id)
871
871
    notes = Unicode()