[profiles] Fix migration
All checks were successful
build & deploy / test (push) Successful in 1m48s
build & deploy / deploy (push) Has been skipped

This commit is contained in:
2026-03-08 17:06:48 -04:00
parent 5b8559efd0
commit a5eff556be
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# Generated by Django 4.2.29 on 2026-03-08 05:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("books", "0032_remove_book_run_time_seconds_and_more"),
]
operations = [
migrations.AlterField(
model_name="book",
name="issue_number",
field=models.IntegerField(blank=True, null=True),
),
migrations.AlterField(
model_name="book",
name="volume_number",
field=models.IntegerField(blank=True, null=True),
),
]

View File

@ -0,0 +1,23 @@
# Generated by Django 4.2.29 on 2026-03-08 05:52
from django.db import migrations, models
from profiles.constants import PRETTY_TIMEZONE_CHOICES
class Migration(migrations.Migration):
dependencies = [
("profiles", "0027_userprofile_mood_checkin_enabled_and_more"),
]
operations = [
migrations.AlterField(
model_name="userprofile",
name="timezone",
field=models.CharField(
choices=PRETTY_TIMEZONE_CHOICES,
default="UTC",
max_length=255,
),
),
]