mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
8 lines
197 B
MySQL
8 lines
197 B
MySQL
|
START TRANSACTION;
|
||
|
DROP TABLE IF EXISTS `artists`;
|
||
|
DROP TABLE IF EXISTS `albums`;
|
||
|
DROP TABLE IF EXISTS `tracks`;
|
||
|
DROP TABLE IF EXISTS `track_artist`;
|
||
|
DROP TABLE IF EXISTS `scrobble_track`;
|
||
|
|
||
|
COMMIT;
|