summaryrefslogtreecommitdiffstats
path: root/support/schema/aur-schema.sql
diff options
context:
space:
mode:
authoreric <eric>2005-01-24 22:03:44 +0100
committereric <eric>2005-01-24 22:03:44 +0100
commit9641fdc735640af82606ee9b6a60a1cb3c046d16 (patch)
tree54a65ae53f39bcd553c78330eb3f8036a25debbd /support/schema/aur-schema.sql
parent8d2dfcb24874cd9a8797d0648e1da74e063a03c1 (diff)
downloadaur-9641fdc735640af82606ee9b6a60a1cb3c046d16.tar.gz
aur-9641fdc735640af82606ee9b6a60a1cb3c046d16.tar.xz
fixed dummy-data, schema, gendummydata to use md5 passwords
Diffstat (limited to 'support/schema/aur-schema.sql')
-rw-r--r--support/schema/aur-schema.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql
index 13e83d17..0b07038e 100644
--- a/support/schema/aur-schema.sql
+++ b/support/schema/aur-schema.sql
@@ -40,11 +40,11 @@ CREATE TABLE Users (
);
-- A default developer account for testing purposes
INSERT INTO Users (ID, AccountTypeID, Username, Email, Passwd) VALUES (
- 1, 3, 'dev', 'dev@localhost', 'dev');
+ 1, 3, 'dev', 'dev@localhost', MD5('dev'));
INSERT INTO Users (ID, AccountTypeID, Username, Email, Passwd) VALUES (
- 2, 2, 'tu', 'tu@localhost', 'tu');
+ 2, 2, 'tu', 'tu@localhost', MD5('tu'));
INSERT INTO Users (ID, AccountTypeID, Username, Email, Passwd) VALUES (
- 3, 1, 'user', 'user@localhost', 'user');
+ 3, 1, 'user', 'user@localhost', MD5('user'));
-- Track Users logging in/out of AUR web site.