a11yist/db/migrate/20241111034826_add_url_to_reports.rb

6 lines
115 B
Ruby
Raw Normal View History

2024-11-11 05:00:51 +01:00
class AddUrlToReports < ActiveRecord::Migration[8.0]
def change
add_column :reports, :url, :string
end
end