summaryrefslogtreecommitdiffstats
path: root/db/migrate/089_add_attachments_description.rb
blob: 411dfe4d6a2856b9061b85b619b4f330f2051530 (plain)
1
2
3
4
5
6
7
8
9
class AddAttachmentsDescription < ActiveRecord::Migration
  def self.up
    add_column :attachments, :description, :string
  end

  def self.down
    remove_column :attachments, :description
  end
end