dawarich/db/migrate/20251118210506_add_note_to_places.rb

6 lines
150 B
Ruby
Raw Normal View History

class AddNoteToPlaces < ActiveRecord::Migration[8.0]
def change
2025-11-22 18:43:31 -05:00
add_column :places, :note, :text unless column_exists? :places, :note
end
end