diff options
author | nfoy <nfoy@purdue.edu> | 2014-04-26 20:57:26 -0400 |
---|---|---|
committer | nfoy <nfoy@purdue.edu> | 2014-04-26 20:57:26 -0400 |
commit | 31d458e59077340f28955033735f5c433197cb75 (patch) | |
tree | 8784a35b5d50f32ce693c0427b277f7238c6d691 /db/schema.rb | |
parent | 00f3d70445d7cae0976ec9794e555c52a1765b24 (diff) | |
parent | edcca83c6c251a79afcd83760cf20ebaf00b3b32 (diff) |
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb index d7e4efd..0616ef2 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20140424230712) do +ActiveRecord::Schema.define(version: 20140427001542) do create_table "alerts", force: true do |t| t.integer "author_id" @@ -97,6 +97,7 @@ ActiveRecord::Schema.define(version: 20140424230712) do t.integer "set_rounds" t.boolean "randomized_teams" t.string "sampling_method" + t.string "scoring_method" t.datetime "created_at" t.datetime "updated_at" end @@ -254,8 +255,9 @@ ActiveRecord::Schema.define(version: 20140424230712) do create_table "tournament_stages", force: true do |t| t.integer "tournament_id" - t.string "scheduling" t.text "structure" + t.string "scheduling_method" + t.string "seeding_method" t.datetime "created_at" t.datetime "updated_at" end @@ -273,6 +275,7 @@ ActiveRecord::Schema.define(version: 20140424230712) do t.integer "set_rounds" t.boolean "randomized_teams" t.string "sampling_method" + t.string "scoring_method" t.datetime "created_at" t.datetime "updated_at" end |