buckets / application

Buckets Desktop Application
https://www.budgetwithbuckets.com
187 stars 2 forks source link

Don't copy account transaction memo to bucket transaction memo #248

Open iffy opened 6 years ago

flrns commented 6 years ago

As a workaround, running

update bucket_transaction set memo=(select memo from account_transaction where id=bucket_transaction.account_trans_id)
where exists (select memo from account_transaction where id=bucket_transaction.account_trans_id);

on the sqlite-file will copy over all memos from account_transactions to bucket_transactions appropriately.

iffy commented 1 year ago

Related #738