From 9ad62b44a58d1d1824b713377cf1fac67591b36c Mon Sep 17 00:00:00 2001 From: Eric Tillberg Date: Thu, 28 Mar 2024 17:11:46 -0400 Subject: [PATCH] Use slow instead of slowAsync in Game model --- app/models/game.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/game.rb b/app/models/game.rb index 6e5ce1fa..18563e7b 100644 --- a/app/models/game.rb +++ b/app/models/game.rb @@ -1,7 +1,7 @@ class Game < ActiveRecord::Base enum base_game: {imperial: 0, imperial2030: 1, imperialAsia: 2, imperialEurope2030: 3} enum variant: {standard: 0, auction: 1, withoutInvestorCard: 2} - enum time_commitment: {infinite: 0, slowAsync: 1, async: 2, live: 3} + enum time_commitment: {infinite: 0, slow: 1, async: 2, live: 3} has_many :actions, dependent: :destroy has_many :players, dependent: :destroy