Merge pull request 'Remove account' (#11) from working into main
Docker Build and Release Upload / build (push) Successful in 1m19s
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:
+1
-29
@@ -166,32 +166,4 @@ CREATE TABLE IF NOT EXISTS `JobListing` (
|
|||||||
`IsDeleted` boolean Default 0,
|
`IsDeleted` boolean Default 0,
|
||||||
PRIMARY KEY (`ID`),
|
PRIMARY KEY (`ID`),
|
||||||
FOREIGN KEY (`CompanyID`) REFERENCES `Company`(`ID`) ON DELETE CASCADE
|
FOREIGN KEY (`CompanyID`) REFERENCES `Company`(`ID`) ON DELETE CASCADE
|
||||||
) AUTO_INCREMENT=1;
|
) 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',
|
|
||||||
'',
|
|
||||||
''
|
|
||||||
);
|
|
||||||
Reference in New Issue
Block a user