mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
7 lines
185 B
Ruby
7 lines
185 B
Ruby
class ChangeWNameToLoserName < ActiveRecord::Migration[4.2]
|
|
def change
|
|
rename_column :matches, :w1_name, :loser1_name
|
|
rename_column :matches, :w2_name, :loser2_name
|
|
end
|
|
end
|