Remove account

This commit is contained in:
2025-07-30 21:35:23 -07:00
parent b9402251f7
commit 23969a58c1
-28
View File
@@ -167,31 +167,3 @@ CREATE TABLE IF NOT EXISTS `JobListing` (
PRIMARY KEY (`ID`),
FOREIGN KEY (`CompanyID`) REFERENCES `Company`(`ID`) ON DELETE CASCADE
) AUTO_INCREMENT=1;
-- Default Account
INSERT INTO Account (
ID,
UserName,
Email,
EmailVerified,
PasswordHash,
FailedPasswordLock,
PasswordAttempts,
CurrentPasswordAttempts,
Role,
EmailToken,
DataServer
) VALUES (
1,
'admin',
'admin@mistox.com',
1,
'$2a$11$0UeWLLqTXe3FG161QVuI0OQJ9rulspUpMG581DI6KSzDXBbFKd00S',
0,
5,
0,
'Admin',
'',
''
);