gitlab-org--gitlab-foss/db/migrate/20160508215820_add_type_to_...

7 lines
130 B
Ruby

# rubocop:disable all
class AddTypeToNotes < ActiveRecord::Migration
def change
add_column :notes, :type, :string
end
end