Django-model.md
model 정의
from django.db import Model
class User(Model.models):
username = models.CharField(max_length=100)
email = models.EmailField()
pwd = models.CharField(max_length=200)
Migration
Field types








Field name restrictions
Foreign Key
🚨 복합키 (composite key)
Last updated
