Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inability to re-activate an Account #276

Open
jantman opened this issue Feb 12, 2023 · 0 comments
Open

Inability to re-activate an Account #276

jantman opened this issue Feb 12, 2023 · 0 comments
Labels

Comments

@jantman
Copy link
Owner

jantman commented Feb 12, 2023

This is part of what was reported in #270

When the "Active" checkbox on the Account Edit modal is unchecked, the Account completely disappears from the UI. There's currently no way to re-activate an account aside from manually updating the database. Inactive accounts should still be shown in the UI except grayed out, the way inactive scheduled transactions are handled.

WORKAROUND:

The only current workaround for this is to connect to the database and manually re-enable the account. For example, we can run this query to show all inactive accounts:

MariaDB [budgettest]> SELECT id,name,is_active FROM accounts WHERE is_active=0;
+----+--------------+-----------+
| id | name         | is_active |
+----+--------------+-----------+
|  6 | DisabledBank |         0 |
+----+--------------+-----------+
1 row in set (0.000 sec)

And then we can re-activate the account with id 6 (name DisabledBank) with: UPDATE accounts SET is_active=1 WHERE id=6;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant