debian-mirror-gitlab/db/migrate/20160508215820_add_type_to_notes.rb
2016-06-16 23:09:34 +05:30

7 lines
130 B
Ruby

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