pulled out account functions into separate include file

This commit is contained in:
eric 2004-06-22 14:26:54 +00:00
parent 63b92980c2
commit 64db123697
7 changed files with 828 additions and 381 deletions

View file

@ -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.