mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-27 19:17:12 +02:00
21 lines
611 B
Python
21 lines
611 B
Python
# Generated by Django 5.2.9 on 2026-02-15 21:35
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0016_account_untracked_by'),
|
|
('users', '0023_alter_usersettings_timezone'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='usersettings',
|
|
name='default_account',
|
|
field=models.ForeignKey(blank=True, default=0, null=True, on_delete=django.db.models.deletion.SET_NULL, to='accounts.account', verbose_name='Default account'),
|
|
),
|
|
]
|