Currently, database giving us every id starts wit...
# orm-help
a
Currently, database giving us every id starts with 
ck....
. I need to change that. Is there any way to change this ?
r
Hey @Ashiqur Rahman 👋 Currently changing this is not possible as these are auto-generated, if you want to generate an ID specific to your choice, you would have to create a new field and use that with the prefix and random string of your choice.
a
okay. but can I skip that auto-generated id field? I tried to skip this. but I get an error from prisma : `✖️ One field of the type
User
must be marked as the id field with the
@id
directive.`
r
Currently that isn't possible.