You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
autohero/backend/migrations/000021_heroes_state_resting...

6 lines
304 B
SQL

-- Align heroes.state CHECK with model.GameState (resting / in_town used by town arrival & admin teleport).
ALTER TABLE heroes DROP CONSTRAINT IF EXISTS heroes_state_check;
ALTER TABLE heroes ADD CONSTRAINT heroes_state_check CHECK (
state IN ('walking', 'fighting', 'dead', 'resting', 'in_town')
);