gitlabhq/db/migrate/20110928161328_add_attachment_to_note.rb

6 lines
119 B
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
class AddAttachmentToNote < ActiveRecord::Migration
def change
add_column :notes, :attachment, :string
end
end