Files
openfoodnetwork/db/migrate/20221116095826_create_report_rendering_options.rb
2022-11-24 10:25:59 +01:00

13 lines
273 B
Ruby

class CreateReportRenderingOptions < ActiveRecord::Migration[6.1]
def change
create_table :report_rendering_options do |t|
t.references :user
t.text :options
t.string :report_type
t.string :report_subtype
t.timestamps
end
end
end