Error running `drizzle-kit push` after schema update
This is my first time using Drizzle.
After making my first schema change, the generated SQL code contains errors.
The schema went from
id, cpf, date to id, cpf, email, phone, date.
It tries to query the leads column which does not exist in the previous table.1 Reply
For now, I'm switching from
push to generate and migrate. This way, I can edit the migration before pushing it to the server.