diff options
author | eric <eric> | 2004-06-23 00:28:13 +0000 |
---|---|---|
committer | eric <eric> | 2004-06-23 00:28:13 +0000 |
commit | 84912ddb2e9e695980ac42c599ceda8362455790 (patch) | |
tree | 39bb7ff98de81556b9fe83e63acabc91ad94da58 /support/schema | |
parent | 64db123697c4ce34bd9ef0c3881771627465ae6b (diff) |
account adding/editing is working
Diffstat (limited to 'support/schema')
-rw-r--r-- | support/schema/aur-schema.sql | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql index ede9e6e..ffd1d98 100644 --- a/support/schema/aur-schema.sql +++ b/support/schema/aur-schema.sql @@ -39,7 +39,11 @@ CREATE TABLE Users ( ); -- A default developer account for testing purposes INSERT INTO Users (ID, AccountTypeID, Username, Email, Passwd) VALUES ( - 1, 3, 'root', 'root@localhost', 'changeme'); + 1, 3, 'dev', 'dev@localhost', 'dev'); +INSERT INTO Users (ID, AccountTypeID, Username, Email, Passwd) VALUES ( + 2, 2, 'tu', 'tu@localhost', 'tu'); +INSERT INTO Users (ID, AccountTypeID, Username, Email, Passwd) VALUES ( + 3, 1, 'user', 'user@localhost', 'user'); -- Track Users logging in/out of AUR web site. |