Skip to content

1.1.6

Compare
Choose a tag to compare
@scott-wyatt scott-wyatt released this 11 Aug 21:07
· 125 commits to master since this release
f2a00c9

Bug Fixes

none

Change Log

  • Account id is added to the transaction table for lookups of transactions by account
  • Migrate Using
ALTER TABLE "public"."transaction"
   ADD COLUMN "account_id" integer,
   ADD CONSTRAINT transaction_account_id_fkey
   FOREIGN KEY (account_id)
   REFERENCES "public"."account" (id);