I have just started working on a new rails project, and I have noticed that the previous developer has used strings instead of symbols as keys for the enum. The example is as follows:
enum event_type: {
'Tournament' => 1,
'Practice Game' => 2
}
I am just curious about the possible advantages/disadvantages of using strings instead of symbols.