Merge pull request 'Remove account' (#11) from working into main
Docker Build and Release Upload / build (push) Successful in 1m19s

Reviewed-on: #11
This commit was merged in pull request #11.
This commit is contained in:
2025-07-31 04:35:38 +00:00
-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',
'',
''
);