minus-squaresaucyloggins@lemmy.worldtoProgramming@programming.dev•[Discussion] Devs and Devops: if you have running containers in production, how are you upgrading those containers?linkfedilinkEnglisharrow-up6·1 year agoWe do migrations for schema on app startup (built into the app). Any general data changes are done outside the pipeline as a pre or post deployment step. Migrations on startup aren’t perfect, you have to be careful that it doesn’t take too long on startup. Honestly the pros outweighs the cons. You can fire up a new site/db without much effort which is something we do often. linkfedilink
saucyloggins@lemmy.world to boardgames@feddit.deEnglish · 1 year agoFTC warns board game content creators, publishers over failing to properly disclose relationships, free gamesplus-squareboardgamewire.comexternal-linkmessage-square5fedilinkarrow-up128arrow-down10
arrow-up128arrow-down1external-linkFTC warns board game content creators, publishers over failing to properly disclose relationships, free gamesplus-squareboardgamewire.comsaucyloggins@lemmy.world to boardgames@feddit.deEnglish · 1 year agomessage-square5fedilink
We do migrations for schema on app startup (built into the app).
Any general data changes are done outside the pipeline as a pre or post deployment step.
Migrations on startup aren’t perfect, you have to be careful that it doesn’t take too long on startup.
Honestly the pros outweighs the cons. You can fire up a new site/db without much effort which is something we do often.