blob: 34613c628aeed68e3dfbf51b2f3b5da52c36d2cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 2.2.9 on 2020-04-24 19:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('caf', '0002_auto_20200403_1407'),
]
operations = [
migrations.AlterField(
model_name='applicablesystem',
name='description',
field=models.TextField(blank=True, max_length=1000, null=True),
),
]
|