I have a lot of entries in my kdbx database where the title is the domain the password belongs to. In most but not all of them, the URL field is empty:
| Title | Username | Password | URL | ... |
|-----------------+----------+----------+---------------------------+-----|
| example.com | | *** | | ... |
| foo.example.net | foo | *** | | ... |
| bar.example.net | bar | *** | | ... |
| example.org | bla | *** | https://example.org/login | ... |
| ... | ... | ... | ... | ... |
How to fill the URL field based on the title field so the DB looks like the one below?
| Title | Username | Password | URL | ... |
|-----------------+----------+----------+---------------------------+-----|
| example.com | | *** | https://example.com/ | ... |
| foo.example.net | foo | *** | https://foo.example.net | ... |
| bar.example.net | bar | *** | https://bar.example.net | ... |
| example.org | bla | *** | https://example.org/login | ... |
| ... | ... | ... | ... | ... |