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

« back to all changes in this revision

Viewing changes to userdb/users.sql

  • Committer: Matt Giuca
  • Date: 2010-02-25 01:13:40 UTC
  • Revision ID: matt.giuca@gmail.com-20100225011340-s604qzuvqt73zh6z
Login page: Added a warning that Internet Explorer is unsupported at this time. This checks the UA string for 'MSIE' and a bit more magic. Fixes Launchpad bug #526822.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
    semesterid  INTEGER REFERENCES semester (semesterid) NOT NULL,
65
65
    description VARCHAR,
66
66
    url         VARCHAR,
 
67
    show_worksheet_marks BOOLEAN NOT NULL DEFAULT false,
 
68
    worksheet_cutoff TIMESTAMP,
67
69
    groups_student_permissions  VARCHAR NOT NULL DEFAULT 'none',
68
70
    CHECK (groups_student_permissions in ('none', 'invite', 'create')),
69
71
    UNIQUE (subject, semesterid)
227
229
    name        TEXT NOT NULL,
228
230
    data        TEXT NOT NULL,
229
231
    assessable  BOOLEAN NOT NULL,
 
232
    published   BOOLEAN NOT NULL DEFAULT true,
230
233
    seq_no      INT4 NOT NULL,
231
234
    format      TEXT NOT NUll,
232
235
    UNIQUE (offeringid, identifier)