Files
play-life/play-life-backend/migrations/024_add_reward_policy.sql
poignatov f9928c6470
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m0s
Доски желаний и политика награждения
2026-01-13 22:35:01 +03:00

14 lines
609 B
SQL

-- Migration: Add reward_policy to tasks table
-- This migration adds reward_policy column for wishlist tasks
-- If the column already exists (from migration 023), this will be a no-op
-- ============================================
-- Modify: tasks - добавляем политику награждения для wishlist задач
-- ============================================
ALTER TABLE tasks
ADD COLUMN IF NOT EXISTS reward_policy VARCHAR(20) DEFAULT 'personal';
COMMENT ON COLUMN tasks.reward_policy IS
'For wishlist tasks: personal = only if user completes, shared = anyone completes';