24 lines
644 B
Python
24 lines
644 B
Python
# Generated by Django 2.2.3 on 2019-08-06 07:52
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('catalog', '0005_auto_20190730_1307'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='comment',
|
|
name='old_value',
|
|
field=models.TextField(null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='comment',
|
|
name='item',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='comments', to='catalog.Item'),
|
|
),
|
|
]
|