@@ -0,0 +1,29 @@
|
||||
# Generated by Django 5.2.16 on 2026-07-21 00:00
|
||||
|
||||
import apps.profiles.defaults
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("profiles", "0003_learning_enabled_default_false"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="searchprofile",
|
||||
name="reminders_enabled",
|
||||
field=models.BooleanField(default=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="searchprofile",
|
||||
name="top_match_reminders_enabled",
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="searchprofile",
|
||||
name="follow_up_weekdays",
|
||||
field=models.JSONField(default=apps.profiles.defaults.default_follow_up_weekdays, blank=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user