chore(db): add deleted_at to profiles and organizations

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Arthur Belleville 2026-04-29 17:45:40 +02:00
parent 6c74bb8bcf
commit 42d5161ab6
No known key found for this signature in database

View file

@ -0,0 +1,2 @@
ALTER TABLE profiles ADD COLUMN IF NOT EXISTS deleted_at timestamptz DEFAULT NULL;
ALTER TABLE organizations ADD COLUMN IF NOT EXISTS deleted_at timestamptz DEFAULT NULL;