Compare commits

...

1 Commits

Author SHA1 Message Date
53805d8793 Add added_date column to songs table #100 2024-10-24 03:17:06 +00:00
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;