(no title)
sivers | 4 months ago
But PostgreSQL is not Oracle and doing things this way has been working wonderfully for me for 9 years so far.
sivers | 4 months ago
But PostgreSQL is not Oracle and doing things this way has been working wonderfully for me for 9 years so far.
whizzter|4 months ago
1: cooperation, nowadays database instances are cheaper and with Docker we can spin them up but having them shared doesn't feel like a fun thing when developing (triggers more than stored procedures here)
2: version control, kinda ties to the above but being able to keep track of changes (and related then to code being out of sync even if that would matter less in a application-less world)
3: debugging in general ?
4: debuging "spooky effects at a distance" when triggers,etc run.
What's your take on these?
qr1pt0|4 months ago
We dont use stored procedures at work, but all other database changes like tables, triggers etc. are committed to git and deployed using github actions. There's no need to run the sql manually
ako|4 months ago
sirtaj|4 months ago