1. ORM (Object Relational Mapping)
2. Model 클래스 생성
3. Migration
python manage.py makemigrations # 생성 및 변경된 model 객체들의 정의서를 만듬
python manage.py migrate # migration을 실제 DB에 적용
4. SQLite 3
sqlite3 db.sqlite3 # migrate로 생성된 db 열람
.tables # table 목록 나열
.schema django_basic_user # 해당 테이블 스키마 확인
5. Model 생성 결과