dawarich/db/migrate/20251118210506_add_note_to_places.rb
2025-11-18 22:16:34 +01:00

5 lines
113 B
Ruby

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