Add backend support for zone tooltips

This commit is contained in:
Dana Lambert 2021-12-13 11:56:14 +13:00
parent 02b6f51435
commit 1d54abca6a
3 changed files with 24 additions and 1 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 3.2.8 on 2021-12-12 22:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('api', '0012_alter_plant_maxheight'),
]
operations = [
migrations.AddField(
model_name='zone',
name='tooltipText',
field=models.CharField(blank=True, max_length=500, null=True),
),
]