a11yist/db/migrate/20241111034826_add_url_to_reports.rb
david e569bcb246
Some checks failed
/ Run tests (push) Successful in 1m52s
/ Run system tests (push) Failing after 2m3s
/ Build, push and deploy image (push) Successful in 1m45s
Cosmetics
2024-11-11 05:00:51 +01:00

5 lines
115 B
Ruby

class AddUrlToReports < ActiveRecord::Migration[8.0]
def change
add_column :reports, :url, :string
end
end