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

« back to all changes in this revision

Viewing changes to ivle/database.py

  • Committer: William Grant
  • Date: 2009-02-25 01:18:09 UTC
  • Revision ID: grantw@unimelb.edu.au-20090225011809-tshsnb9ke6m6bnwq
Replace Semester.active with Semester.state, allowing more useful state
information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
232
232
    id = Int(primary=True, name="semesterid")
233
233
    year = Unicode()
234
234
    semester = Unicode()
235
 
    active = Bool()
 
235
    state = Unicode()
236
236
 
237
237
    offerings = ReferenceSet(id, 'Offering.semester_id')
238
238