Remove local account related stuff

This commit is contained in:
2025-07-30 17:25:48 -07:00
parent 161ab64a20
commit 7f3dbcaac6
3 changed files with 0 additions and 185 deletions
-19
View File
@@ -1,25 +1,6 @@
CREATE DATABASE IF NOT EXISTS `boredcareers`;
USE `boredcareers`;
-- Account Section
CREATE TABLE IF NOT EXISTS `Account` (
`ID` int NOT NULL AUTO_INCREMENT,
`UserName` varchar(60) NOT NULL,
`Email` varchar(255) NOT NULL,
`EmailVerified` boolean DEFAULT 0,
`PasswordHash` char(60) DEFAULT NULL,
`FailedPasswordLock` boolean DEFAULT 0,
`PasswordAttempts` int(11) DEFAULT NULL,
`CurrentPasswordAttempts` int(11) DEFAULT NULL,
`Role` varchar(45) DEFAULT NULL,
`EmailToken` varchar(45) DEFAULT NULL,
`DataServer` varchar(200) DEFAULT NULL,
UNIQUE(`Email`),
UNIQUE(`UserName`),
PRIMARY KEY (`ID`)
) AUTO_INCREMENT=1;
-- Resume Section
CREATE TABLE IF NOT EXISTS `Resume` (