account/models.py
# models.py
from django.db import models
# Create your models here.
class HelloWorld(models.Model):
text = models.CharField(max_length=255, null=False)
요렇게 적고 아래 명령을 실행해 보자
$ python manage.py makemigrations
0001_initial.py가 생성되며 db와 연결준비를 했다는 것을 알린다.
$ python manage.py migrate
db연동 명령이라고 받아 들이자.
참고로 연동된 db파일의 정보는 settings.py의
# ...
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': BASE_DIR / 'db.sqlite3',
'NAME' : os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# ...
에서 관리중이다.