Echo-Z/comment/migrations/0001_initial.py

28 lines
828 B
Python

# Generated by Django 4.2.23 on 2025-06-20 02:43
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='comment',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('comment_Content', models.TextField(verbose_name='评论内容')),
('comment_User', models.CharField(max_length=100, verbose_name='评论者')),
('comment_Time', models.DateTimeField(verbose_name='评论时间')),
],
options={
'verbose_name': '评论',
'verbose_name_plural': '评论管理',
},
),
]