Hey, how do I create a column of a special postgre...
# orm-help
t
Hey, how do I create a column of a special postgres type,
ltree
?
n
I don't think that's possible yet, can you create a feature request? 🙂
t
@nilan oh.. is there like a back-door way to do it in the meantime?
n
I'm not aware of one 🤔
t
ah, shoot 😕 that's pretty critical for my project. was thinking maybe i'd run that migration manually or something, and there'd be a raw sql method to query it
n
yea sounds like that should work
t
hm. but then when i run
prisma deploy
later, wouldn't it detect a discrepancy in the field type and try to change it to whatever my SDL says?
n
there is an internal representation of the schema against which the datamodel is compared
also, you can use disable migrations for a connector by setting
migrations: false
in the
PRISMA_CONFIG
in
docker-compose.yml
t