db/leagues.rb in sportdb-0.5.6 vs db/leagues.rb in sportdb-0.6.0
- old
+ new
@@ -38,23 +38,26 @@
########################################
## international leagues w/ football clubs teams
leagues_club_intl = [
- [ 'cl', 'Champions League' ],
- [ 'el', 'Europa League' ]
+ [ 'cl', 'Champions League' ],
+ [ 'el', 'Europa League' ],
+ [ 'copa', 'Copa Libertadores' ],
+ [ 'copa.sud', 'Copa Sudamericana' ]
]
League.create_from_ary!( leagues_club_intl, club: true )
#######################################
## internationl tournaments & cups w/ national teams
leagues_intl = [
- [ 'euro', 'Euro' ],
- [ 'wm', 'World Cup' ], ## change key to world??
- [ 'wmq', 'World Cup Quali' ]
+ [ 'euro', 'Euro' ],
+ [ 'wm', 'World Cup' ], ## change key to world??
+ [ 'wmq.euro', 'World Cup Quali Europe' ],
+ [ 'wmq.america', 'World Cup Quali North/Central America and Caribbean' ]
]
League.create_from_ary!( leagues_intl, club: false )