Skip to content
Snippets Groups Projects
Commit dc6f3910 authored by Jeremya Dharmawan's avatar Jeremya Dharmawan
Browse files

add: db seed

parent 2bd480a8
No related merge requests found
......@@ -67,6 +67,16 @@ CREATE TABLE `PremiumSong` (
LOCK TABLES `PremiumSong` WRITE;
/*!40000 ALTER TABLE `PremiumSong` DISABLE KEYS */;
-- Insert seed data for PremiumSong
INSERT INTO `PremiumSong` (`song_id`, `title`, `artist`, `genre`, `audio`, `picture`, `price`)
VALUES
(1, 'Song Title 1', 'Artist 1', 'Genre 1', 'https://drive.google.com/file/d/1hE_Vz2LOWFmbGXFwR2bKHWr3BmQBtjXP/view?usp=drive_link', 'https://th.bing.com/th/id/OIP.u0LfIm1Nb5kTmMI5k37ftgHaFj?rs=1&pid=ImgDetMain', 10),
(2, 'Song Title 2', 'Artist 2', 'Genre 2', 'https://drive.google.com/file/d/1hE_Vz2LOWFmbGXFwR2bKHWr3BmQBtjXP/view?usp=drive_link', 'https://th.bing.com/th/id/OIP.Y6ApZ6CuUxDKepMsuBFxBgHaHa?rs=1&pid=ImgDetMain', 15),
(3, 'Song Title 3', 'Artist 3', 'Genre 3', 'https://drive.google.com/file/d/1hE_Vz2LOWFmbGXFwR2bKHWr3BmQBtjXP/view?usp=drive_link', 'https://th.bing.com/th/id/OIP.u0LfIm1Nb5kTmMI5k37ftgHaFj?rs=1&pid=ImgDetMain', 12),
(4, 'Song Title 4', 'Artist 4', 'Genre 4', 'https://drive.google.com/file/d/1hE_Vz2LOWFmbGXFwR2bKHWr3BmQBtjXP/view?usp=drive_link', 'https://th.bing.com/th/id/OIP.Y6ApZ6CuUxDKepMsuBFxBgHaHa?rs=1&pid=ImgDetMain', 18),
(5, 'Song Title 5', 'Artist 5', 'Genre 5', 'https://drive.google.com/file/d/1hE_Vz2LOWFmbGXFwR2bKHWr3BmQBtjXP/view?usp=drive_link', 'https://th.bing.com/th/id/OIP.u0LfIm1Nb5kTmMI5k37ftgHaFj?rs=1&pid=ImgDetMain', 14),
(6, 'Song Title 6', 'Artist 6', 'Genre 6', 'https://drive.google.com/file/d/1hE_Vz2LOWFmbGXFwR2bKHWr3BmQBtjXP/view?usp=drive_link', 'https://th.bing.com/th/id/OIP.Y6ApZ6CuUxDKepMsuBFxBgHaHa?rs=1&pid=ImgDetMain', 20);
/*!40000 ALTER TABLE `PremiumSong` ENABLE KEYS */;
UNLOCK TABLES;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment