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

7 lines
158 B
Ruby

class AddWNamesToMatch < ActiveRecord::Migration
def change
add_column :matches, :w1_name, :string
add_column :matches, :w2_name, :string
end
end