- Which case conventions?
- snake_case (Postgres style), camelCase (rare in SQL), PascalCase (some .NET ORMs), SCREAMING_SNAKE_CASE (constants). Mix-and-match cross-conversions.
- Why would I convert?
- Migrating an ORM that mandates a specific case, or consolidating databases where one uses snake_case and another camelCase. Also: Prisma models vs underlying Postgres tables.
- Does it preserve table vs column context?
- Yes — common convention: table names plural snake_case, column names singular snake_case. The tool respects both.
- Keywords stay uppercase?
- Yes — SQL keywords (SELECT, FROM, WHERE) are preserved. Only identifiers are converted.