0048_add_system_timezone.sql 269 B

123456
  1. -- Add timezone column to system_settings table
  2. -- Stores IANA timezone identifier (e.g., 'Asia/Shanghai', 'America/New_York')
  3. -- NULL means: use TZ environment variable or fallback to UTC
  4. ALTER TABLE "system_settings"
  5. ADD COLUMN IF NOT EXISTS "timezone" varchar(64);