Skip to content

Commit 66d4146

Browse files
chore(projects): forgotten migration
1 parent 9fbf7d2 commit 66d4146

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Generated by Django 5.2.13 on 2026-04-22 14:55
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("projects", "0118_document_private"),
9+
("sites", "0002_alter_domain_unique"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="project",
15+
name="sites",
16+
field=models.ManyToManyField(
17+
related_name="project_sites",
18+
through="projects.ProjectSite",
19+
through_fields=("project", "site"),
20+
to="sites.site",
21+
),
22+
),
23+
]

0 commit comments

Comments
 (0)