song_update_20240423.sql 164 B

12345
  1. alter table song_info
  2. add play_count int default 0 not null after duration;
  3. alter table song_info
  4. add upvote_count int default 0 not null after play_count;