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:
10
db/migrate/20151111130227_create_teampointadjusts.rb
Normal file
10
db/migrate/20151111130227_create_teampointadjusts.rb
Normal 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
|
||||
Reference in New Issue
Block a user