dawarich/db/migrate/20251118210506_add_note_to_places.rb

6 lines
113 B
Ruby
Raw Normal View History

class AddNoteToPlaces < ActiveRecord::Migration[8.0]
def change
add_column :places, :note, :text
end
end