diff options
author | Luke Shumaker <shumakl@purdue.edu> | 2014-04-22 15:56:06 -0400 |
---|---|---|
committer | Luke Shumaker <shumakl@purdue.edu> | 2014-04-22 15:56:06 -0400 |
commit | 45c5d311492ef98ed702beaf043d289a705a5e0b (patch) | |
tree | c0bea2e65d21127a1fd34a245b5bb7fc47123bb0 /db/schema.rb | |
parent | 9d226fcd27b6c2470edf718ad36a262348891470 (diff) | |
parent | c927cd7c043d982f8ffb51c8a78288d88d825d82 (diff) |
Merge branch 'clean2'
Conflicts:
app/models/team.rb
app/views/matches/index.html.erb
app/views/matches/show.html.erb
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/db/schema.rb b/db/schema.rb index e8764b6..3f39538 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: 20140422061739) do +ActiveRecord::Schema.define(version: 20140422195211) do create_table "alerts", force: true do |t| t.integer "author_id" @@ -104,9 +104,8 @@ ActiveRecord::Schema.define(version: 20140422061739) do create_table "matches", force: true do |t| t.integer "status" t.integer "tournament_stage_id" - t.string "name" t.integer "winner_id" - t.string "remote_id" + t.text "remote_id" t.integer "submitted_peer_evaluations" t.datetime "created_at" t.datetime "updated_at" @@ -185,13 +184,10 @@ ActiveRecord::Schema.define(version: 20140422061739) do add_index "statistics", ["user_id"], name: "index_statistics_on_user_id" create_table "teams", force: true do |t| - t.integer "match_id" t.datetime "created_at" t.datetime "updated_at" end - add_index "teams", ["match_id"], name: "index_teams_on_match_id" - create_table "teams_users", id: false, force: true do |t| t.integer "team_id", null: false t.integer "user_id", null: false |