Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20110928161328_add_attachment_to_note.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 37d9cf10258f8abeb2efbb25fd384cb786ced669 (plain)
1
2
3
4
5
class AddAttachmentToNote < ActiveRecord::Migration
  def change
    add_column :notes, :attachment, :string
  end
end