-
### Description
It would be nice to support the postgres enum type:
https://www.postgresql.org/docs/9.1/datatype-enum.html
-
Columns of type enum in Postgres show up in the diagram as strings. Is there a way show the type as enum? Or maybe even add enums to the diagram as entities?
Thanks, this is a great package.
-
## Problem
Given the following diff on a Prisma schema:
```diff
enum Foo {
A
+ B
C
}
```
`prisma migrate dev` will create the following migration (for postgres):
```sql
-- …
-
## GORM Playground Link
https://github.com/go-gorm/playground/pull/586
## Description
This test fails after upgrading `gorm.io/driver/postgres` from v1.4.5 to v1.4.6
The test adds an enum …
-
Const enums (like the ones in ) are a feature specific to Typescript projects built with `tsc` compiler. Builds that do not use `tsc` and only compile explicitly imported files need the `--isolatedMod…
-
**Describe the problem**
Cockroach seems to permit the corruption of check constraints and of partial indexes when renaming enum values. Only the former problem appears on postgres. The latter prob…
-
On postgres:
When adding a new enum variant, the drop column doesn't delete the enum type, so the new creation is ignored
-
Hi,
Still trying to setup a working docker-compose configuration. Here is my snippet for `tmate-master`:
```
tmate-master:
image: tmate/tmate-master:latest
container_name: tmate-maste…
-
Not exactly an issue, but a guide on how to support a new type in SeaQuery.
1. It usually starts from `ColumnType` where we'd add the type, so that it can be used in schema statements
2. If the ty…
-
### Expected behavior
When using `outputSchemaToDefault = true`, there should be no references to the schema used for generation.
### Actual behavior
At least for checks and function default …