dawarich/db/migrate/20251118210506_add_note_to_places.rb
Eugene Burmakin 78ac365c00 Some fixes
2025-11-23 00:43:31 +01:00

5 lines
150 B
Ruby

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