Skip to content

Commit fcbaccf

Browse files
committed
trying new mig
1 parent 57fc369 commit fcbaccf

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed

mod_app/migrations/0028_visualwritteninfluences.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ class Migration(migrations.Migration):
2323
),
2424
),
2525
("title", models.CharField(max_length=255)),
26-
(
27-
"films",
28-
models.ManyToManyField(
29-
blank=True, related_name="vwis", to="mod_app.film"
30-
),
31-
),
26+
# (
27+
# "films",
28+
# models.ManyToManyField(
29+
# blank=True, related_name="vwis", to="mod_app.film"
30+
# ),
31+
# ),
3232
(
3333
"content",
3434
ckeditor_uploader.fields.RichTextUploadingField(
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Generated by Django 4.2.5 on 2024-12-10 13:07
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("mod_app", "0029_alter_drawing_film_alter_otherlink_film_and_more"),
9+
]
10+
11+
operations = [
12+
migrations.AddField(
13+
model_name="visualwritteninfluences",
14+
name="films",
15+
field=models.ManyToManyField(
16+
to="mod_app.Film", blank=True, related_name="vwis"
17+
),
18+
),
19+
]

0 commit comments

Comments
 (0)