Verified Commit a32d4005 authored by Jakob Moser's avatar Jakob Moser
Browse files

Explain balance change

parent bccb33f5
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -41,3 +41,11 @@ In the lower panel, run:
```bash
sqlite3 instance/poolpay.db
```

## Change Balance

To increase the balance of `mustermann` by 1 €, enter the following in the SQL shell:

```sql
update person set balance_cents = balance_cents + 100 where cl_account_name = 'mustermann';
```