mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-05-01 11:31:56 +00:00
7 lines
180 B
Ruby
7 lines
180 B
Ruby
class ChangeWNameToLoserName < ActiveRecord::Migration
|
|
def change
|
|
rename_column :matches, :w1_name, :loser1_name
|
|
rename_column :matches, :w2_name, :loser2_name
|
|
end
|
|
end
|