summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-04-26 20:25:29 -0400
committerAndrewMurrell <amurrel@purdue.edu>2014-04-26 20:25:29 -0400
commita5a08c542e550c20493d746546a886efe2123434 (patch)
tree506e00c350b51016222140d9f917883bf76cb59b /db
parent7d97ad8ff641c1f5d67706bec053c77ece70b18a (diff)
parent853c307700fa81b924e00bf430c878a3b7029ffe (diff)
Merge branch 'master' of http://github.com/LukeShu/leaguer
Diffstat (limited to 'db')
-rw-r--r--db/seeds.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/seeds.rb b/db/seeds.rb
index ba3e5a3..3b98070 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -7,7 +7,7 @@
# Mayor.create(name: 'Emanuel', city: cities.first)
#
p = User.permission_bits
-Server.create(default_user_permissions: p[:join_tournament] | p[:create_pm])
+Server.create(default_user_permissions: p[:join_tournament] | p[:create_pm] | p[:create_bracket] | p[:edit_bracket])
Game.create(name: "League of Legends",min_players_per_team: 5, max_players_per_team: 5, min_teams_per_match: 2, max_teams_per_match: 2, set_rounds: nil, randomized_teams: true, sampling_method: "Manual,Double Blind,RiotAPI")
Game.create(name: "Chess", min_players_per_team: 1, max_players_per_team: 1, min_teams_per_match: 2, max_teams_per_match: 2, set_rounds: nil, randomized_teams: true, sampling_method: "Manual,Double Blind")