mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 08:25:14 +00:00
Daniel Mason
e570314ac2
- Fix mobile menu auto collapse on select - Add /u/ route for public user profiles (Added private flag to db - to implement later) - Add /user route for your own profile / edit profile - Added handling for if API is offline/incorrect - Add index.html loading spinner while react bundle downloads - Change HashRouter to BrowserRouter - Added sources column to scrobbles
16 lines
696 B
SQL
16 lines
696 B
SQL
CREATE TABLE IF NOT EXISTS `users` (
|
|
`uuid` BINARY(16) PRIMARY KEY,
|
|
`created_at` DATETIME NOT NULL,
|
|
`created_ip` VARBINARY(16) NULL DEFAULT NULL,
|
|
`modified_at` DATETIME NOT NULL,
|
|
`modified_ip` VARBINARY(16) NULL DEFAULT NULL,
|
|
`username` VARCHAR(64) NOT NULL,
|
|
`password` VARCHAR(60) NOT NULL,
|
|
`email` VARCHAR(255) NULL DEFAULT NULL,
|
|
`verified` TINYINT(1) NOT NULL DEFAULT 0,
|
|
`active` TINYINT(1) NOT NULL DEFAULT 1,
|
|
`admin` TINYINT(1) NOT NULL DEFAULT 0,
|
|
`private` TINYINT(1) NOT NULL DEFAULT 0,
|
|
KEY `usernameLookup` (`username`, `active`),
|
|
KEY `emailLookup` (`email`, `active`)
|
|
) DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci; |