Skip to content

Commit

Permalink
Use slow instead of slowAsync in Game model
Browse files Browse the repository at this point in the history
  • Loading branch information
Thrillberg committed Mar 28, 2024
1 parent d2a3bc0 commit 9ad62b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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
Expand Down

0 comments on commit 9ad62b4

Please sign in to comment.