I'm new to PHP and MySQL. For my project I want to make a site for lyrics. How to design the database and the relationships?
Here is what I have so far:
Artist
- Artist_id
- Artist_name
- Artist_bio
- Artist_thumb
Albums
- Album_id
- Artist_id
- Genre_id
- Album_title
- Release_year
Genre
- genre_id
- genre_name
Tracks
- track_id
- track_title
- album_id
Please let me know if I'm wrong
Thanks