Add added_date column to songs table #100

This commit is contained in:
Daniel Miller 2024-10-24 03:17:06 +00:00
parent 3cfcacc9ba
commit 53805d8793
2 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,2 @@
ALTER TABLE songs
DROP COLUMN added_date;

View File

@ -0,0 +1,2 @@
ALTER TABLE songs
ADD COLUMN added_date DATE DEFAULT CURRENT_DATE;