Files
spend-sparrow/migration/006_transaction_description.up.sql
Tim Wundenberg 989a31afd1
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 4m17s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 4m40s
feat(transaction): #101 replace "note" with "party" and "description"
2025-05-17 22:08:42 +02:00

5 lines
149 B
SQL

ALTER TABLE "transaction" DROP COLUMN note;
ALTER TABLE "transaction" ADD COLUMN party TEXT;
ALTER TABLE "transaction" ADD COLUMN description TEXT;