💽
drizzle kit + Supabase で カラム変更を含む push が通らない問題の解消
SupabaseのDBを使っていて、drizzle-kit push
を実行した際に、カラム変更を含んでいると
const onUpdate = fk4.update_rule.toLowerCase();
^
TypeError: Cannot read properties of undefined (reading 'toLowerCase')
のようなエラーが出て通らない。
ポートを 6543 から 5432 に変更すると通る。
DATABASE_URL=postgres://postgres.xxxxxxxxxxxx.xxxxxxxxxx:xxxxxx@aws-0-ap-northeast-1.xxxxxx.supabase.com:5432/postgres
こちらのコメントに感謝。
Discussion