al13ntown/db/migrate/20260824070116_create_site_reports.rb
2026-08-24 20:12:41 +00:00

9 lines
163 B
Ruby

class CreateSiteReports < ActiveRecord::Migration[8.1]
def change
create_table :site_reports do |t|
t.text :body
t.timestamps
end
end
end