Do we have to add enums to the migration manually?
I have the following in the my schema:
Everything worked great except the enums did not get added to my
sql
file. I needed to manually add the following to my sql
file:
Is that expected for now?2 Replies
You need to export membershipRoleEnum as well
drizzle-kit is importing everything from schema files
everything that was not exported won't be visible for drizzle-kit
Thank you