diff options
author | eric <eric> | 2004-06-22 16:26:54 +0200 |
---|---|---|
committer | eric <eric> | 2004-06-22 16:26:54 +0200 |
commit | 64db123697c4ce34bd9ef0c3881771627465ae6b (patch) | |
tree | 475d5b7e5bbeb91caa635b932e3067c864355f51 /support/schema | |
parent | 63b92980c2b4ead0e27991da2c44f9293c63c48d (diff) | |
download | aur-64db123697c4ce34bd9ef0c3881771627465ae6b.tar.gz aur-64db123697c4ce34bd9ef0c3881771627465ae6b.tar.xz |
pulled out account functions into separate include file
Diffstat (limited to 'support/schema')
-rw-r--r-- | support/schema/aur-schema.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/schema/aur-schema.sql b/support/schema/aur-schema.sql index 8ed407c7..ede9e6ea 100644 --- a/support/schema/aur-schema.sql +++ b/support/schema/aur-schema.sql @@ -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. |