* Added authentication.

This commit is contained in:
Eelco Dolstra
2008-11-26 19:48:04 +00:00
parent 632d56e665
commit 50ae3ca9e9
23 changed files with 141 additions and 35 deletions

View File

@@ -261,3 +261,11 @@ create table SystemTypes (
system text primary key not null,
maxConcurrent integer not null default 2
);
create table Users (
userName text primary key not null,
fullName text,
emailAddress text not null,
password text not null -- sha256 hash
);