PyCharm: How to run syncdb and sql commands?

django, pycharm

Solution

`Tools` | `Run manage.py Task...`:

Problem

When working with Django you can sync the database like this: ``` python manage.py syncdb ``` and also check the created SQL like this: ``` python manage.py sql bookmarks ``` How do I do the above thorugh the PyCharm IDE instead of the terminal? Thanks,

Original source