-- Run this once against your existing Sand World database (you already
-- imported the original schema.sql, so don't re-run that — just this).
-- Adds the "must join" flag used for mandatory channel/group tasks.

ALTER TABLE tasks
  ADD COLUMN must_join TINYINT(1) NOT NULL DEFAULT 0 AFTER category;
