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