Given a newly created django project with the following installed apps:
INSTALLED_APPS = (
\'django.contrib.admin\',
\'django.contrib.auth\',
\'django.contrib.co
I think you needed to run:
python manage.py syncdb
and potentially you need to setup some dependencies? Probably not necessary after syncdb.
class Migration:
depends_on = (
("accounts", "0001"),
)
def forwards(self):
....
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("accounts", "0001")]