Hello!
I am importing table A from prod to my dev. In dev environment, I have no data in the table A.
However, I get these errors when I run:
Run 1: npx convex import --table tableA path/documents.jsonl (the jsonl was exporting from prod)
Error 1: New table tableA has IDs that conflict with existing table logs
Run 2: npx convex import --table tableA path/documents.jsonl --append
Error 2: _id q575jxdgmxzqz75c7j9hsdsnb173e9gj cannot be imported into 'tableA' because its IDs have a different format
There's no schema change between the 2 tables. How do I resolve this?
Best,