summaryrefslogtreecommitdiff
path: root/db/migrate/20160508215820_add_type_to_notes.rb
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