hmm...which means that I have to alter my database...
# orm-help
o
hmm...which means that I have to alter my database to be able to use prisma 😞
m
Try this
Copy code
type Thing {
    id: ID! @unique
    user_id: Int! @unique
}
o
is it just for prisma? I mean some meta data that prisma uses and needs internaly
m
They enforce having an id in the type, even if you don’t use it. Try it. Worst thing that could happen is it doesn’t work.
o
it is working, but I dont need it, so at this moment it is hard to migrate with prisma, but I guess they will fix it
d
We are in the process of making all this customizable. Here is how that will probably work in the future: https://github.com/prisma/prisma/issues/3404