Skip to content

Commit

Permalink
šŸ—ƒļø Make Insta comment username nullable, since they all seem to be miā€¦
Browse files Browse the repository at this point in the history
ā€¦ssing from quintly response
  • Loading branch information
jh0ker committed Dec 10, 2024
1 parent da46f67 commit 32e5daf
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions okr/migrations/0089_alter_instacomment_username.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 5.0.7 on 2024-12-10 12:44

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("okr", "0088_alter_youtubetrafficsource_source_type"),
]

operations = [
migrations.AlterField(
model_name="instacomment",
name="username",
field=models.TextField(
help_text="Username der Kommentarverfasser*in",
null=True,
verbose_name="Username",
),
),
]
1 change: 1 addition & 0 deletions okr/models/insta.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,7 @@ class Meta:
username = models.TextField(
verbose_name="Username",
help_text="Username der Kommentarverfasser*in",
null=True, # Werden wohl von Quintly nicht mehr geliefert
)

message_length = models.IntegerField(
Expand Down

0 comments on commit 32e5daf

Please sign in to comment.