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: c1d07c9363fdbda9d929ead3588a5b0c796e97fb (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddTypeToNotes < ActiveRecord::Migration
  def change
    add_column :notes, :type, :string
  end
end