- Create database(musics) schema with following tables.
- artists
- id
- artistname
- genres
- genreid
- genre
- albums
- id
- albumname
- data_released
- artist_id
- genre_id
- artists
- Create database(blog) schema with following tables.
- users
- id
- username
- password
- created_at
- updated_at
- category
- id
- category_name
- created_at
- updated_at
- posts
- id
- category_id
- post_title
- post_data
- meta_details
- user_id
- created_at
- updated_at
- post_likes
- id
- post_id
- user_id
- post_comments
- id
- comment
- post_id
- user_id
- created_at
- updated_at
- users