summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authoreric <eric>2004-06-23 02:28:13 +0200
committereric <eric>2004-06-23 02:28:13 +0200
commit84912ddb2e9e695980ac42c599ceda8362455790 (patch)
tree39bb7ff98de81556b9fe83e63acabc91ad94da58 /support
parent64db123697c4ce34bd9ef0c3881771627465ae6b (diff)
downloadaur-84912ddb2e9e695980ac42c599ceda8362455790.tar.gz
aur-84912ddb2e9e695980ac42c599ceda8362455790.tar.xz
account adding/editing is working
Diffstat (limited to 'support')
-rw-r--r--support/schema/aur-schema.sql6
1 files changed, 5 insertions, 1 deletions
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql
index ede9e6ea..ffd1d983 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.