Do y'all take advantage of Postgres enums with prisma? I love the auto generated typescript types and how readable they are in the DB itself but I'm finding adding, renaming, removing values from a pg enum in a db with existing data to be a pain. Reconsidering reimplementing all my enums as tables I can foreign key to. Are enums only good for a set of values that I have a strong sense will basically never change? I should probably stop treating them like a basic typescript enum 😝