7 lines
156 B
Ruby
7 lines
156 B
Ruby
class RemoveImageAndStyleFromBanners < ActiveRecord::Migration
|
|
def change
|
|
remove_column :banners, :image
|
|
remove_column :banners, :style
|
|
end
|
|
end
|