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

20160508215820_add_type_to_notes.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58944d4e651c4e44328deb6dfc317cac5f8724b2 (plain)
1
2
3
4
5
class AddTypeToNotes < ActiveRecord::Migration
  def change
    add_column :notes, :type, :string
  end
end