We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fbf7d2 commit 66d4146Copy full SHA for 66d4146
1 file changed
recoco/apps/projects/migrations/0119_alter_project_sites.py
@@ -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