1.1.6
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);