2025-06-09 15:07:26 +02:00

28 lines
1.0 KiB
SQL

BEGIN EXCLUSIVE;
-- *******************************************************************************
-- *******************************************************************************
-- CUSTOMER CONFIGURABLE DEFAULT DATA
-- *******************************************************************************
-- *******************************************************************************
-- *******************************************************************************
-- *******************************************************************************
-- REQUIRED DEFAULT DATA
-- ** Do not customize this section **
-- *******************************************************************************
-- *******************************************************************************
-- Unknown is always 1
INSERT INTO genres(genre_id, genre)
VALUES(1, NULL);
INSERT INTO artists(artist_id, artist)
VALUES(1, NULL);
INSERT INTO albums(album_id, album)
VALUES(1, NULL);
COMMIT;