Add added_date column to songs table #100
All checks were successful
Push Workflows / docs (push) Successful in 2m46s
Push Workflows / test (push) Successful in 5m8s
Push Workflows / leptos-test (push) Successful in 6m49s
Push Workflows / build (push) Successful in 7m46s
Push Workflows / docker-build (push) Successful in 15m7s

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;