mirror of
http://88.130.71.182:3000/BlitTech/deals24togo_be.git
synced 2026-06-12 23:33:21 +00:00
6 lines
241 B
SQL
6 lines
241 B
SQL
-- Migration 002: Supabase Auth integration
|
|
-- Supabase Auth manages passwords; password_hash is no longer required.
|
|
|
|
ALTER TABLE users ALTER COLUMN password_hash DROP NOT NULL;
|
|
ALTER TABLE users ALTER COLUMN password_hash SET DEFAULT NULL;
|