9 lines
163 B
Ruby
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
|