aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20240225100002_add_note_to_things.rb
blob: b0c0f407d6c1e7f0a0139a427b63b47629bd2259 (plain)
1
2
3
4
5
class AddNoteToThings < ActiveRecord::Migration[7.1]
  def change
    add_column :things, :note, :string
  end
end