composite primary key migration fail
I am trying to add a composite primary key via a custom migration file. I ran
When I run the migration with
drizzle-kit --custom --name=recipient-primary-key to generate a custom migration file. In that file i have the following sql When I run the migration with
drizzle-kit migrate and then inspect my local sqlite binary I only see a recipients_old table. It seems only the first statement in the migration file is successful. When I run these commands manually using sqlite3 they work. Not sure how I can go about debugging.