Files
WeightTracker/migrations/002_add_private_flag.sql
2026-02-24 13:17:09 +11:00

5 lines
182 B
SQL

-- Migration 002: Add private account flag
-- Allows users to hide their check-ins from other users
ALTER TABLE users ADD COLUMN IF NOT EXISTS is_private BOOLEAN DEFAULT FALSE;