Imageable class included in polls model and the first aproach for adding images added to form.
7 lines
169 B
Ruby
7 lines
169 B
Ruby
class AddSummaryAndDescriptionToPolls < ActiveRecord::Migration
|
|
def change
|
|
add_column :polls, :summary, :text
|
|
add_column :polls, :description, :text
|
|
end
|
|
end
|