Django 1.10 removed migrate list option
Django 1.10 removed the very helpful --list (or -l) option from the manage migrate command. This option was deprecated since 1.8. But don't worry, you can have the same output using:
$ ./manage.py showmigrations
You can also see in which order your migrations will be applied using the --plan option:
$ ./manage.py showmigrations --plan