al13ntown/db/migrate/20260824070116_create_site_reports.rb

10 lines
163 B
Ruby
Raw Normal View History

2026-08-24 20:12:41 +00:00
class CreateSiteReports < ActiveRecord::Migration[8.1]
def change
create_table :site_reports do |t|
t.text :body
t.timestamps
end
end
end