21 lines
506 B
Python
21 lines
506 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("plant", "0005_plant_growth_stage"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="plant",
|
|
name="icon",
|
|
field=models.CharField(
|
|
blank=True,
|
|
default="leaf",
|
|
help_text="آیکون گیاه برای نمایش در فرانت",
|
|
max_length=255,
|
|
),
|
|
),
|
|
]
|