9daf39ec52
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1180 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
201 B
Ruby
10 lines
201 B
Ruby
class AddAttachmentsDescription < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :attachments, :description, :string
|
|
end
|
|
|
|
def self.down
|
|
remove_column :attachments, :description
|
|
end
|
|
end
|