diff options
author | guntasgrewal <guntasgrewal@gmail.com> | 2014-04-26 20:35:55 -0400 |
---|---|---|
committer | guntasgrewal <guntasgrewal@gmail.com> | 2014-04-26 20:35:55 -0400 |
commit | 1d24cb050f198e9c8bec8dd014de203d889ab56a (patch) | |
tree | 9f10e7a5be75d7ffb4cb829d3738a144b5250b9b /db/schema.rb | |
parent | 2d0fe1a4197e70cb99f4285a8b32a645914d8beb (diff) | |
parent | dfbbe46fdcca392b3dec703cf347d1b1d57ca94f (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 |