1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Deducted points pool tie breaker added

This commit is contained in:
2015-11-16 13:31:27 +00:00
parent 34a04be4bf
commit 934ccc28ee
9 changed files with 199 additions and 26 deletions

View File

@@ -0,0 +1,10 @@
class CreateTeampointadjusts < ActiveRecord::Migration
def change
create_table :teampointadjusts do |t|
t.integer :points
t.integer :wrestler_id
t.timestamps null: false
end
add_index :teampointadjusts, :wrestler_id
end
end