mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fixed dummy-data, schema, gendummydata to use md5 passwords
This commit is contained in:
parent
8d2dfcb248
commit
9641fdc735
3 changed files with 12 additions and 12 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue