Add backend support for zone tooltips
This commit is contained in:
parent
02b6f51435
commit
1d54abca6a
3 changed files with 24 additions and 1 deletions
18
backend/right_tree/api/migrations/0013_zone_tooltiptext.py
Normal file
18
backend/right_tree/api/migrations/0013_zone_tooltiptext.py
Normal 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),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue