mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-10 23:07:47 +00:00
13 lines
273 B
Ruby
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
|