feat(migrations): add options for yearly overview types

This commit is contained in:
Herculino Trotta
2024-11-02 01:29:00 -03:00
parent 3e8410c477
commit 6067e1e770

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.1.2 on 2024-11-02 04:23
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0011_alter_usersettings_start_page'),
]
operations = [
migrations.AlterField(
model_name='usersettings',
name='start_page',
field=models.CharField(choices=[('MONTHLY_OVERVIEW', 'Monthly'), ('YEARLY_OVERVIEW_CURRENCY', 'Yearly by currency'), ('YEARLY_OVERVIEW_ACCOUNT', 'Yearly by account'), ('NETWORTH', 'Net Worth'), ('ALL_TRANSACTIONS', 'All Transactions'), ('CALENDAR', 'Calendar')], default='MONTHLY_OVERVIEW', max_length=255, verbose_name='Start page'),
),
]