-
### Bug description
I have an enum value and I would like to expand the possible values. The migration file is created successfully, but when running the migration I get the following error:
```
…
-
### What's not working?
Service test and scenario generation for a string array field, sets string value instead of array for fields that are arrays of string and arrays of string enums.
###…
-
## Description
After running the CLI to generate the types from my existing db, I got
```rs
#[derive(Debug, Clone, PartialEq, Eq, EnumIter, DeriveActiveEnum)]
#[sea_orm(rs_type = "String", db…
-
Postgres enum support is a widely requested feature for Persistent. However, that's a moderately difficult project and hasn't seen any progress in several years.
One way users could start benefitti…
-
With Doobie 0.12.1 and PostgreSQL 11.
Given this setup:
```sql
create schema custom;
create type custom.foo as enum('Bar');
create type foo as enum('Bar');
```
an analysis of a simple query usi…
-
The Prisma schema currently allows the re-use of enums on several fields on MySQL and Postgres. This does not match the enum implementation on MySQL where they are defined on a column level.
```sq…
do4gr updated
6 months ago
-
### Version
1.26.0
### What happened?
When I select an enum array column in Postgres (pgx) with sqlc the generated type for that column is `[]interface{}`. For some reason this doesn't reprod…
-
### What version of `drizzle-orm` are you using?
0.27.2
### What version of `drizzle-kit` are you using?
0.19.10
### Describe the Bug
I created a table in a previous migration with a field set fo…
-
Hi there,
Wondering if [Enumerated Types](https://www.postgresql.org/docs/current/datatype-enum.html) would ever be supported at a library level? Would you be open to that type of feature as a con…
-
Enums in subgraph schemas should have unique labels, i.e., the following should be rejected with a clear error message
```
enum Answer { yes no yes }
```
because `yes` appears twice.
Right now,…