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

« back to all changes in this revision

Viewing changes to userdb/users.sql

  • Committer: mattgiuca
  • Date: 2008-07-07 05:59:07 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:816
users.sql: Updated database schema; split subject and offering tables.

Need to manually apply the following commands to being the database up to
date. Note that this will wipe all data in your "offering" table - which
shouldn't matter because IVLE has never used this table to date.

CREATE TABLE subject (                                                               
    subjectid       SERIAL PRIMARY KEY NOT NULL,
    subj_code       VARCHAR UNIQUE NOT NULL,
    subj_name       VARCHAR NOT NULL,
    subj_short_name VARCHAR,    -- may be null
    url             VARCHAR
);

DELETE FROM offering;
ALTER TABLE offering DROP COLUMN subj_code;
ALTER TABLE offering DROP COLUMN subj_name;
ALTER TABLE offering DROP COLUMN url;
ALTER TABLE offering ADD COLUMN subject
    INT4 REFERENCES subject (subjectid) NOT NULL;

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
    settings    VARCHAR
20
20
);
21
21
 
 
22
CREATE TABLE subject (
 
23
    subjectid       SERIAL PRIMARY KEY NOT NULL,
 
24
    subj_code       VARCHAR UNIQUE NOT NULL,
 
25
    subj_name       VARCHAR NOT NULL,
 
26
    subj_short_name VARCHAR     -- may be null
 
27
);
 
28
 
22
29
CREATE TABLE offering (
23
30
    offeringid  SERIAL PRIMARY KEY NOT NULL,
24
 
    subj_name   VARCHAR NOT NULL,
25
 
    subj_code   VARCHAR NOT NULL,
 
31
    subject     INT4 REFERENCES subject (subjectid) NOT NULL,
26
32
    year        CHAR(4) NOT NULL,
27
33
    semester    CHAR(1) NOT NULL,
28
34
    url         VARCHAR