✅ models.py from django.db import models from django.conf import settings # Create your models here. class Blog(models.Model): title = models.CharField(max_length=100) body = models.TextField() 동일하게 모델은 이전과 동일하다. ✅ serializers.py from .models import Blog from rest_framework import serializers class BlogSerializer(serializers.ModelSerializer): class Meta: model = Blog fields = '__all__' ✅ views.p..