0001_initial.py
python_backend/curriculum/django/blog/migrations/0001_initial.py
# Generated by Django 4.2.27 on 2026-01-28 03:20
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = []
operations = [
migrations.CreateModel(
name="Post",
fields=[
(
"id",
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("title", models.CharField(max_length=200)),
("content", models.TextField()),
("created_at", models.DateTimeField(auto_now_add=True)),
],
),
]
相關文章
apps.py
apps.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/apps.py).
閱讀文章 →models.py
models.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/models.py).
閱讀文章 →urls.py
urls.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/urls.py).
閱讀文章 →views.py
views.py — python source code from the python backend learning materials (python_backend/curriculum/django/blog/views.py).
閱讀文章 →manage.py
manage.py — python source code from the python backend learning materials (python_backend/curriculum/django/manage.py).
閱讀文章 →asgi.py
asgi.py — python source code from the python backend learning materials (python_backend/curriculum/django/myproject/asgi.py).
閱讀文章 →