blob: a2486656e1c9c208ca4eeffa95b3c5d6832e8dd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 3.0.7 on 2020-11-04 13:40
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('yaksh', '0026_release_0_27_0'),
]
operations = [
migrations.AddField(
model_name='answer',
name='comment',
field=models.TextField(blank=True, null=True),
),
]
|