notice 등록 기능 구현
This commit is contained in:
18
blog/migrations/0005_rename_content_post_contents.py
Normal file
18
blog/migrations/0005_rename_content_post_contents.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.14 on 2025-01-17 15:36
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('blog', '0004_remove_post_tags_post_tags'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='post',
|
||||
old_name='content',
|
||||
new_name='contents',
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user