mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-24 17:04:43 +00:00
11 lines
263 B
Ruby
11 lines
263 B
Ruby
class CreateTeampointadjusts < ActiveRecord::Migration[4.2]
|
|
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
|