-- Migration: add winner_count to positions table
-- Run this if you already have the database set up from the original schema.

ALTER TABLE positions
    ADD COLUMN IF NOT EXISTS winner_count INT NOT NULL DEFAULT 1;
