Deployment to heroku gives Database Errors.

I followed this article to deploy:

Web article

I’m getting an error:

Just try creating a user, on the frontpage, here:

abstract-spacecraft DOT herokuapp DOT com

I used weird notation because of this spam filter here.

I think this is with either SQLite or PostgreSQL options. Do I need to additionally run the Django migration tool on heroku over command line as well?

I posted an image because previously, my post got blocked as spam, when I tried pasting the full error text + my settings.py.

The full code can be found here:

Github repository

Was able to fix it (for SQLite) using:

heroku run python manage.py migrate --app my_app_name

Anyway to do this automatically with each deploy?