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

« back to all changes in this revision

Viewing changes to userdb/users.sql

  • Committer: drtomc
  • Date: 2008-03-06 02:32:37 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:659
Add a little script for stuffing exercises into the database.

Add an identifier field to the problem table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
104
104
 
105
105
CREATE TABLE problem (
106
106
    problemid   SERIAL PRIMARY KEY NOT NULL,
 
107
    identifier  VARCHAR UNIQUE NOT NULL,
107
108
    spec        VARCHAR
108
109
);
109
110