mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-03 22:52:18 +00:00
0.0.9
- 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
This commit is contained in:
parent
af02bd99cc
commit
e570314ac2
27 changed files with 435 additions and 89 deletions
1
migrations/temp/7_files.down.sql
Normal file
1
migrations/temp/7_files.down.sql
Normal file
|
@ -0,0 +1 @@
|
|||
DROP TABLE IF EXISTS `files`;
|
7
migrations/temp/7_files.up.sql
Normal file
7
migrations/temp/7_files.up.sql
Normal file
|
@ -0,0 +1,7 @@
|
|||
CREATE TABLE IF NOT EXISTS `files` (
|
||||
`uuid` BINARY(16) PRIMARY KEY,
|
||||
`path` VARCHAR(255) NOT NULL,
|
||||
`filesize` INT NULL DEFAULT NULL,
|
||||
`dimension` VARCHAR(4) NOT NULL,
|
||||
KEY `dimensionLookup` (`uuid`, `dimension`)
|
||||
) DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci;
|
Loading…
Add table
Add a link
Reference in a new issue