feat(custom-currencies): add custom currencies support to ledger#4549
feat(custom-currencies): add custom currencies support to ledger#4549mark-vass-konghq wants to merge 4 commits into
Conversation
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
4dbfd70 to
e82d034
Compare
| ALTER TABLE "billing_invoice_lines" ALTER COLUMN "currency" TYPE character varying(24); | ||
| -- modify "billing_invoice_split_line_groups" table | ||
| ALTER TABLE "billing_invoice_split_line_groups" ALTER COLUMN "currency" TYPE character varying(24); | ||
| -- modify "billing_invoices" table | ||
| ALTER TABLE "billing_invoices" ALTER COLUMN "currency" TYPE character varying(24); | ||
| -- modify "billing_standard_invoice_detailed_lines" table | ||
| ALTER TABLE "billing_standard_invoice_detailed_lines" ALTER COLUMN "currency" TYPE character varying(24); | ||
| -- modify "charge_credit_purchases" table | ||
| ALTER TABLE "charge_credit_purchases" ALTER COLUMN "currency" TYPE character varying(24); | ||
| -- modify "charge_flat_fee_run_detailed_lines" table | ||
| ALTER TABLE "charge_flat_fee_run_detailed_lines" ALTER COLUMN "currency" TYPE character varying(24); | ||
| -- modify "charge_flat_fees" table | ||
| ALTER TABLE "charge_flat_fees" ALTER COLUMN "currency" TYPE character varying(24); | ||
| -- modify "charge_usage_based" table | ||
| ALTER TABLE "charge_usage_based" ALTER COLUMN "currency" TYPE character varying(24); | ||
| -- modify "charge_usage_based_run_detailed_line" table | ||
| ALTER TABLE "charge_usage_based_run_detailed_line" ALTER COLUMN "currency" TYPE character varying(24); |
There was a problem hiding this comment.
let's only change those parts of the db where this makes sense for this change if possible.
e.g. billing will not use non-fiat currencies as currency.
No description provided.