Browse Source
* infer case_log values from schemes * only display relevant property information questions * Add unittype_sh column * Display the correct number of completed sections * fix schema and migration * Fix test failing in CI This test was failing due to some different between UTC and BST time as the record from the DB comes back with a UTC timezone. Comparing the integer values of both will ensure that both timestamps are identical and should fix the issue in the CI where it thinks the values are different * only run query for scheme locations size once Co-authored-by: Dushan <dushan@madetech.com> * extract TYPE_OF_UNIT_MAP * lint * Use find insted of select Co-authored-by: Dushan Despotovic <dushan@madetech.com>pull/724/head
kosiakkatrina
2 years ago
committed by
GitHub
14 changed files with 153 additions and 27 deletions
@ -0,0 +1,7 @@
|
||||
class AddUnitTypeSh < ActiveRecord::Migration[7.0] |
||||
def change |
||||
change_table :case_logs, bulk: true do |t| |
||||
t.integer :unittype_sh |
||||
end |
||||
end |
||||
end |
|
Loading…
Reference in new issue