* email notification of evaluation errors to project owner (if desired)

This commit is contained in:
Rob Vermaas
2009-12-18 12:07:45 +00:00
parent d6416ada4e
commit 044edfb764
3 changed files with 48 additions and 4 deletions

View File

@ -2,7 +2,8 @@ create table Users (
userName text primary key not null,
fullName text,
emailAddress text not null,
password text not null -- sha256 hash
password text not null, -- sha256 hash
emailOnError integer not null default 0
);