mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
7 lines
164 B
Ruby
7 lines
164 B
Ruby
class RenameStats < ActiveRecord::Migration[4.2]
|
|
def change
|
|
rename_column :matches, :g_stat, :w1_stat
|
|
rename_column :matches, :r_stat, :w2_stat
|
|
end
|
|
end
|