mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 05:32:18 +00:00
Add MBID
Add ability to set custom port
This commit is contained in:
parent
a22f282a6d
commit
08f0cb6c80
5 changed files with 26 additions and 5 deletions
7
migrations/4_mbid.up.sql
Normal file
7
migrations/4_mbid.up.sql
Normal file
|
@ -0,0 +1,7 @@
|
|||
START TRANSACTION;
|
||||
|
||||
ALTER TABLE albums ADD COLUMN `mbid` VARCHAR(36) DEFAULT NULL;
|
||||
ALTER TABLE artists ADD COLUMN `mbid` VARCHAR(36) DEFAULT NULL;
|
||||
ALTER TABLE tracks ADD COLUMN `mbid` VARCHAR(36) DEFAULT NULL;
|
||||
|
||||
COMMIT;
|
Loading…
Add table
Add a link
Reference in a new issue