- Don’t include $ because that is seen as a bash variable even if you wrap your string in double quotes, it only works if escaped by single quotes.
- Single and double quotes, just annoying to escape
- Exclamation mark
https://unix.stackexchange.com/questions/3747/understanding-the-exclamation-mark-in-bash - Backslash
- Number sign #
Editors in general thinks everything after is a comment - Equal signs
Generally okay, as they are part of base64 etc., but try to avoid it as it is generally something with equality
Prisma Migrate is amazing, it helps you manage your database and generates typings for your database schema automatic.
https://github.com/prisma/migrate
However you can still make mistakes that takes down your app, so here is the rules:
You can not add and delete columns in same release
If you add columns, migrate first and deploy.
When deployed to production, Prisma will try to select the column and if you did…