Add icons to categories
This commit is contained in:
parent
9ca4b0d391
commit
98a1037d5e
4 changed files with 27 additions and 3 deletions
|
@ -0,0 +1,22 @@
|
|||
# Generated by Django 4.0.4 on 2022-05-20 20:13
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("main", "0007_alter_category_options_alter_transaction_options_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name="category",
|
||||
options={"ordering": ["name"]},
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="category",
|
||||
name="icon",
|
||||
field=models.CharField(default="folder", max_length=64),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue