UPDATE
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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,
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user