Remove "prices.desc" column

#475
This commit is contained in:
Artur Beljajev 2017-05-06 18:03:54 +03:00
parent 8ad924cf59
commit 31f39d92b2
2 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class RemovePriceDesc < ActiveRecord::Migration
def change
remove_column :prices, :desc, :string
end
end