Update maxheight field to be a string

This commit is contained in:
Dana Lambert 2021-12-07 14:54:59 +13:00 committed by Alistair McIntyre
parent ab48059387
commit 29417ca4e8
4 changed files with 25 additions and 4 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 3.2.8 on 2021-12-07 01:22
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('api', '0010_christchurchregion'),
]
operations = [
migrations.AlterField(
model_name='plant',
name='maxheight',
field=models.CharField(max_length=20),
),
]