about summary refs log tree commit diff
path: root/db/migrate/20170927215609_add_description_to_media_attachments.rb
blob: db8d765664f7dc778650244d3420d16b41b528bf (plain) (blame)
1
2
3
4
5
class AddDescriptionToMediaAttachments < ActiveRecord::Migration[5.1]
  def change
    add_column :media_attachments, :description, :text
  end
end