1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/db/migrate/20151111130227_create_teampointadjusts.rb

11 lines
258 B
Ruby

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