Django/inflearn

모델 클래스 선언

곽수진 2022. 9. 30. 02:36
반응형

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 : 게시글 작성시(이 모델의 데이터 저장 시) 생성 시각

    → updated_at : 저장된 레코드 수정 시 수정 시각

    → 숫자 필드 선언 방법 : models.IntegerField()

 

 

"""
Django settings for firstdjango project.

Generated by 'django-admin startproject' using Django 3.2.15.

For more information on this file, see
https://docs.djangoproject.com/en/3.2/topics/settings/

For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.2/ref/settings/
"""
import os
from pathlib import Path

# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure-=&v14*#%e)$a-0&+k85e0w@c3jj5k-2ab$2^7=g_tpc_et)%(&'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'first',
    'second',
]

MIDDLEWARE = [
    'django.middleware.security.SecurityMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'firstdjango.urls'

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [],
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]

WSGI_APPLICATION = 'firstdjango.wsgi.application'


# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    }
}


# Password validation
# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
    {
        'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
    },
    {
        'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
    },
]


# Internationalization
# https://docs.djangoproject.com/en/3.2/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'Asia/Seoul'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.2/howto/static-files/

STATIC_URL = '/static/'

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, "static")
]

# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field

DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'

▶ settings.py에 INSTALLED_APPS'second' 추가해줌

 

 

from django.contrib import admin
from django.urls import path, include

urlpatterns = [
    path('first/', include('first.urls')),
    path('second/', include('second.urls')),
    path('admin/', admin.site.urls),
]

path('second/', include('second.urls')) : second 웹 앱의 urls.py를 연결

 

 

from django.urls import path
from . import views

urlpatterns = [
]

▶ second 웹앱 폴더 내에도 urls.py를 생성함

 

 

settings.py에 DATABASES 코드를 보면 기본적으로 sqlite3라는 데이터베이스를 사용하도록 설정되어 있음

 

 

python manage.py runserver : 서버가 돌아가는지 확인

    → 'python manage.py migrate'를 실행하라는 내용

 

 

python manage.py makemigrations:  자동적으로 구현된 모델 클래스를 DB의 실제 테이블로 생성하는 명령어

 

 

second/migrations/0001_initial.py 파일이 생성되고 테이블 생성 명령어가 담겨있음

 

 

python manage.py migrate : 자동으로 db.sqlite3 파일이 생성되고 해당 파일이 DB 역할을 함

반응형

'Django > inflearn' 카테고리의 다른 글

데이터 생성  (0) 2022.10.02
MTV 패턴  (0) 2022.10.01
Django 모델 개요  (0) 2022.09.29
로또 번호 출력 페이지 만들기  (0) 2022.09.28
스태틱 파일 띄우기  (0) 2022.09.27