~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-24 01:05:33 UTC
  • Revision ID: matt.giuca@gmail.com-20100224010533-ccr0d5fnp2k0qoyv
Removed ivle/webapp/admin/templates/subject.html, an empty template. Offeringservice no longer depends on it (it was the default template for that view, but never used).

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,
69
67
    groups_student_permissions  VARCHAR NOT NULL DEFAULT 'none',
70
68
    CHECK (groups_student_permissions in ('none', 'invite', 'create')),
71
69
    UNIQUE (subject, semesterid)
216
214
    identifier  TEXT PRIMARY KEY CHECK (valid_url_name(identifier)),
217
215
    name        TEXT,
218
216
    description TEXT,
219
 
    description_xhtml_cache TEXT,
220
217
    partial     TEXT,
221
218
    solution    TEXT,
222
219
    include     TEXT,
229
226
    identifier  TEXT NOT NULL CHECK (valid_url_name(identifier)),
230
227
    name        TEXT NOT NULL,
231
228
    data        TEXT NOT NULL,
232
 
    data_xhtml_cache TEXT,
233
229
    assessable  BOOLEAN NOT NULL,
234
 
    published   BOOLEAN NOT NULL DEFAULT true,
235
230
    seq_no      INT4 NOT NULL,
236
231
    format      TEXT NOT NUll,
237
232
    UNIQUE (offeringid, identifier)