▶ python manage.py startapp second : 기존의 웹앱과 구분하기 위해 second 웹 앱을 하나 더 생성 from django.db import models class Post(models.Model): title = models.CharField(max_length=30) content = models.TextField() created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) ▶ models.py에 모델들을 정의함 → title : 30자 이하의 문자열 → content : 긴 문자열 → created_at : 게시글 작성시(이 모델의 데이터 저장 시..