6 lines
126 B
Ruby
6 lines
126 B
Ruby
|
class FixStateToStat < ActiveRecord::Migration
|
||
|
def change
|
||
|
rename_column :stats, :state_type_id, :stat_type_id
|
||
|
end
|
||
|
end
|