Skip to content

Commit

Permalink
fix: typo in old migration script
Browse files Browse the repository at this point in the history
This commit fixesa typo in an old migration script.  If we ever need to
upgrade an old database, we'll be bit by this.
  • Loading branch information
jniles committed Mar 8, 2021
1 parent 6e5077e commit 8faa06b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/models/migrations/v1.17.0-v1.17.1/migrate.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ UPDATE `unit` SET `path` = '/reports/patient_standing' WHERE id = 202;
UPDATE `unit` SET `path` = '/reports/unpaid_invoice_payments' WHERE id = 210;
UPDATE `unit` SET `path` = '/reports/fee_center' WHERE id = 222;
UPDATE `unit` SET `path` = '/reports/break_even' WHERE id = 231;
UPDATE `unit` SET `path` = '/reports/break_even_fee_center' WHERE id = 232
UPDATE `unit` SET `path` = '/reports/break_even_fee_center' WHERE id = 232;
UPDATE `unit` SET `path` = '/reports/indicators_report' WHERE id = 238;
UPDATE `unit` SET `path` = '/reports/monthly_balance' WHERE id = 244;
UPDATE `unit` SET `path` = '/reports/debtor_summary' WHERE id = 245;
Expand Down

0 comments on commit 8faa06b

Please sign in to comment.