mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-21 17:09:24 +01:00
19 lines
622 B
Python
19 lines
622 B
Python
# Generated by Django 5.1.2 on 2024-10-28 00:22
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0009_alter_usersettings_start_page'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='usersettings',
|
|
name='start_page',
|
|
field=models.CharField(choices=[('MONTHLY_OVERVIEW', 'Monthly Overview'), ('YEARLY_OVERVIEW', 'Yearly Overview'), ('NETWORTH', 'Net Worth'), ('ALL_TRANSACTIONS', 'All Transactions')], default='MONTHLY_OVERVIEW', max_length=255, verbose_name='Start page'),
|
|
),
|
|
]
|