Hi, can we create postgres access policies with pr...
# orm-help
r
Hi, can we create postgres access policies with prisma? It would be awesome if possible within the .prisma schema.
1
a
Hey there! You can always edit the generated migrations by passing the
--create-only
flag when running
npx prisma migrate dev
. From there, you can add any SQL you want. If you have ideas on how this could look in the Prisma schema, feel free to open a [feature request](https://github.com/prisma/prisma/issues/new?assignees=&labels=&template=feature_request.md&title=) with more details.