1
0
Fork 0
dokkan-data-rails/db/migrate/20151008163922_rename_cards_prefix_to_title.rb

6 lines
122 B
Ruby
Raw Normal View History

2015-10-08 12:40:31 -04:00
class RenameCardsPrefixToTitle < ActiveRecord::Migration
def change
rename_column :cards, :prefix, :title
end
end