mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 09:43:03 +00:00
pulled out account functions into separate include file
This commit is contained in:
parent
63b92980c2
commit
64db123697
7 changed files with 828 additions and 381 deletions
|
@ -38,8 +38,8 @@ CREATE TABLE Users (
|
|||
FOREIGN KEY (AccountTypeID) REFERENCES AccountTypes(ID) ON DELETE NO ACTION
|
||||
);
|
||||
-- A default developer account for testing purposes
|
||||
INSERT INTO Users (ID, AccountTypeID, Email, Passwd) VALUES (
|
||||
1, 3, 'root@localhost', 'changeme');
|
||||
INSERT INTO Users (ID, AccountTypeID, Username, Email, Passwd) VALUES (
|
||||
1, 3, 'root', 'root@localhost', 'changeme');
|
||||
|
||||
|
||||
-- Track Users logging in/out of AUR web site.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue