1from django.db import models 2 3# Create your models here. 4class Feed(models.Model): 5 content = models.TextField() # 글 내용 6 image = models.TextField() # 피드 이미지 7 profile_image = models.TextField() # 프로필 이미지 8 user_id = models.TextField() # 글 작성자 9 like_count = models.IntegerField() # 좋아요 수 10 11