hubfeenix.fi/db/migrate/20230611105046_add_info_to_events.rb
2023-06-12 15:47:54 +03:00

7 lines
156 B
Ruby

class AddInfoToEvents < ActiveRecord::Migration[7.0]
def change
add_column :events, :info, :string
add_column :profiles, :info, :string
end
end