mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-03 05:27:25 +00:00
7 lines
159 B
Ruby
7 lines
159 B
Ruby
class RenameStats < ActiveRecord::Migration
|
|
def change
|
|
rename_column :matches, :g_stat, :w1_stat
|
|
rename_column :matches, :r_stat, :w2_stat
|
|
end
|
|
end
|