Skip to content

Commit 7800841

Browse files
committed
Temp add migration
1 parent 0af7c2d commit 7800841

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Generated by Django 6.0.2 on 2026-07-02 17:38
2+
3+
import django_countries.fields
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
("users", "0021_add_v3_testers_group"),
11+
]
12+
13+
operations = [
14+
migrations.AddField(
15+
model_name="user",
16+
name="country",
17+
field=django_countries.fields.CountryField(blank=True, max_length=2),
18+
),
19+
migrations.AddField(
20+
model_name="user",
21+
name="hide_badges",
22+
field=models.BooleanField(
23+
default=False, help_text="Hide badges from the public profile."
24+
),
25+
),
26+
migrations.AddField(
27+
model_name="user",
28+
name="hide_github_activity",
29+
field=models.BooleanField(
30+
default=False, help_text="Hide GitHub activity from the public profile."
31+
),
32+
),
33+
migrations.AddField(
34+
model_name="user",
35+
name="hide_mailing_list_activity",
36+
field=models.BooleanField(
37+
default=False,
38+
help_text="Hide mailing list activity from the public profile.",
39+
),
40+
),
41+
]

0 commit comments

Comments
 (0)