healthchecks_healthchecks/hc/accounts/migrations/0038_profile_theme.py
2023-07-12 10:11:07 +03:00

19 lines
400 B
Python

# Generated by Django 3.2.4 on 2021-06-18 09:44
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("accounts", "0037_profile_tz"),
]
operations = [
migrations.AddField(
model_name="profile",
name="theme",
field=models.CharField(blank=True, max_length=10, null=True),
),
]