Recommended way for managing Postgres functions
Hi, I need to create multiple Postgres Functions, and they are very likely to change multiple times in the following days/weeks.
I read that the recommended way is to create an empty migration file and add the sql there. That means for every change, I would need to create a new empty migration file.
I was time about creating them on a directory with raw .sql files and creating them every time the project starts. With this way, a migration file isn't needed.
Is this a good idea or may be go with the empty migration?
0 Replies