20 lines
489 B
Python
20 lines
489 B
Python
# Generated by Django 4.1.4 on 2022-12-29 20:05
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("main", "0013_account_snapshot_account_transaction_account"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="account",
|
|
name="icon",
|
|
field=models.CharField(
|
|
default="building-columns", max_length=64, verbose_name="Icône"
|
|
),
|
|
),
|
|
]
|