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.
As a workaround, running
on the sqlite-file will copy over all memos from
account_transaction
s tobucket_transaction
s appropriately.