merge with the work of paul, using 3 links

This commit is contained in:
clemkeirua 2019-10-03 15:35:31 +02:00
parent 70ea5e167e
commit 43424e4f4e
13 changed files with 356 additions and 63 deletions

View file

@ -0,0 +1,7 @@
class AddExportQueuedToProcedures < ActiveRecord::Migration[5.2]
def change
add_column :procedures, :csv_export_queued, :boolean
add_column :procedures, :xlsx_export_queued, :boolean
add_column :procedures, :ods_export_queued, :boolean
end
end