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

« back to all changes in this revision

Viewing changes to userdb/users.sql

  • Committer: mattgiuca
  • Date: 2008-07-21 05:25:48 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:920
userdb: Added to table "offering" fields max_students_per_group and
    max_groups_per_student.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    subject     INT4 REFERENCES subject (subjectid) NOT NULL,
33
33
    year        CHAR(4) NOT NULL,
34
34
    semester    CHAR(1) NOT NULL,
 
35
    max_groups_per_student      INT4 DEFAULT 1,
 
36
    max_students_per_group      INT4 DEFAULT 4,
35
37
    UNIQUE (subject, year, semester)
36
38
);
37
39