I have a type named Order. and there is a field n...
# orm-help
d
I have a type named Order. and there is a field named status which is an enum., I checked the postgres database, the status field is not there. Does prisma store that somewhere else?
s
I think prisma create a custome type in db
e.g.
Copy code
create type Order as ENUM (
  'MY_VALUE_1',
  'MY_VALUE_2'
);
d
I connected to the postgres instance using dbeaver. I can't find any table which stores those enum values.
s
in dbeaver extend your public schema then Data Types, you'll see defined enums there