6 lines
134 B
Ruby
6 lines
134 B
Ruby
class AddAttachmentsToQuestions < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :questions, :attachment, :string
|
|
end
|
|
end
|