diff options
Diffstat (limited to 'support')
-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. |