postgresql-migration icon indicating copy to clipboard operation
postgresql-migration copied to clipboard

PostgreSQL Schema Migrations for Haskell

Results 2 postgresql-migration issues
Sort by recently updated
recently updated
newest added

`existsTable conn "myTable"` only works properly if you have a single `myTable` across all schemas. If you try to check for `myTable` in the default schema while having a `myTable`...

It is a bad practice to concatenate user input directly into SQL queries. This opens easily exploitable SQL injection vulnerabilities. A proper way to do it is to wrap table...