blob: f4a29ff725f13de407d3868fe60a72c7a31a89bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Generated by Django 2.2.9 on 2020-02-17 20:53
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('organisations', '0017_auto_20200217_2050'),
]
operations = [
migrations.AddField(
model_name='organisation',
name='comments',
field=models.TextField(default='NA', max_length=500),
preserve_default=False,
),
]
|