[pinterest clone (9)] Model, DB 연동
웹 프로그래밍

[pinterest clone (9)] Model, DB 연동

728x90
반응형

만들어놓은 hello_world.html 을 보면 정적이다. 그냥 워딩 딱 박혀있는게 끝이다.

{% extends 'base.html' %}

{% block content %}

    <div style="height: 20rem; background-color: #38df81; border-radius: 1rem; margin: 2rem; ">
        <h1>
            testing
        </h1>
    </div>

{% endblock %}

이걸 db에서 내용을 받아 동적으로 변할 수 있게 models.py로 부터 시작한다.

 

1

models.py

from django.db import models

# Create your models here.

class HelloWorld(models.Model):
    text = models.CharField(max_length=255, null=False)

 

2

python manage.py makemigrations

: 우리가 models.py에다 쓰는 내용을 db와 연동시킬 파이썬 파일로 만들어주는 작업을 한다.

python manage.py migrate

: 만든거 이제 db와 연동을 시켜준다.

728x90
반응형