I want create practice web game using python(django) + javascript
my project name is lucifer
the path is
├── Makefile
├── README.md
├── lucifer
│ ├── db.sqlite3
│ ├── game
│ │ ├── __init__.py
│ │ ├── character
│ │ │ ├── __init__.py
│ │ │ └── models
│ │ │ ├── __init__.py
│ │ │ └── character.py
│ │ └── skill
│ │ ├── __init__.py
│ │ └── models
│ │ ├── __init__.py
│ │ └── skill.py
│ ├── lucifer
│ │ ├── __init__.py
│ │ ├── settings
│ │ ├── templates
│ │ ├── urls.py
│ │ ├── views
│ │ └── wsgi.py
│ ├── manage.py
│ ├── posts
│ │ ├── __init__.py
│ │ ├── forms.py
│ │ ├── models
│ │ ├── templates
│ │ └── views
│ └── users
│ ├── __init__.py
│ ├── admin
│ ├── models
│ ├── templates
│ └── views
the app is posts, users, game
and models of game are in game app,
INSTALLED_APP
INSTALLED_APPS = [
# ... #
'rest_framework',
'django_summernote',
'lucifer',
'users',
'posts',
'game',
]
when I manage.py makemigrations users posts game
character, skill model does not migrations..
how can i makemigrations my game's models?
thank you
game/__init__.py
from .character import models
from .skills import models
game/character/__init__.py
# none
game/character/models/__init__.py
from models.character import Character
game/skill/__init__.py
# none
game/skill/models/__init__.py
from models.skill import Skill