feat: update survey_item_response table to indlude recorded date and import recorded date when loading responses

This commit is contained in:
rebuilt 2023-06-23 11:26:53 -07:00
parent acb01ec92f
commit 784e23982e
4 changed files with 33 additions and 4 deletions

View file

@ -0,0 +1,5 @@
class AddRecordedDateToSurveyItemResponse < ActiveRecord::Migration[7.0]
def change
add_column :survey_item_responses, :recorded_date, :datetime
end
end