Skip to content

Commit

Permalink
Add enum value for decapitation game mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Askaholic committed Jan 12, 2024
1 parent 7004adf commit bb09ab3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions migrations/V135__add_decapitation_victory_condition.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
-- Existing victory conditions (gameType)
--
-- DEMORALIZATION = 0
-- DOMINATION = 1
-- ERADICATION = 2
-- SANDBOX = 3
--
-- New victory condition
--
-- DECAPITATION = 4
ALTER TABLE game_stats
CHANGE COLUMN gameType enum('0','1','2','3','4') NOT NULL;

0 comments on commit bb09ab3

Please sign in to comment.