Below you will see the songs database diagram:
The songs database has the following relationship between tables:
artists— stores the name of all the artists;albums— stores the title of the album, each artist may have one or many albums;tracks— stores the name and duration of the tracks (songs), each album may have one or many tracks;
Your task is to create the Track, Album, and Artist models, and then use the db.AutoMigrate() function to create the schema of the songs sqlite3 database.