1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-02 21:24:25 +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