17 lines
454 B
Python
17 lines
454 B
Python
# Generated by Django 4.2.3 on 2023-07-24 17:04
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("item", "0003_alter_comment_options_alter_comment_user_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="comment",
|
|
name="session_key",
|
|
field=models.CharField(blank=True, default=None, max_length=60, null=True),
|
|
),
|
|
]
|