hello everyone, I'm encountering a problem when applying drizzle generated migrations to Cloudflare

hello everyone, I'm encountering a problem when applying drizzle generated migrations to Cloudflare D1. The initial migration is processed without any hiccups, but I run into an issue with subsequent migrations, especially those that modify existing columns. Here's the error I'm receiving:
/*
 SQLite does not support "Changing existing column type" out of the box, we do not generate automatic migration for that, so it has to be done manually
 Please refer to: https://www.techonthenet.com/sqlite/tables/alter_table.php
                  https://www.sqlite.org/lang_altertable.html
                  https://stackoverflow.com/questions/2083543/modify-a-columns-type-in-sqlite3

 Due to that we don't generate migration automatically and it has to be done manually
*/


I feel this is related to D1 than to drizzle as applying migrations locally runs smooth and raise errors only when attempting to run migrations to remote db
Was this page helpful?