Replies: 1 comment
-
Did you figure out a solution? I am trying to do basically the same thing. It would be great if we could mark the migration as applied |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am encountering an issue while running migrations for my PostgreSQL database using Drizzle Kit and Node.js. Recently, I had to restore my development database from a backup, but now I cannot apply any new migrations. The migration process fails with the following error:
error: Typ »account_enum« already exists
What I Understand So Far:
The error message (
Typ »account_enum« already exists
) suggests that an enum type account_enum already exists in the database schema. The migration process is likely trying to create it again, leading to a conflict.My Question:
How can I handle this situation where:
Is there a way to:
Beta Was this translation helpful? Give feedback.
All reactions