Skip to content

Commit

Permalink
Merge pull request #364 from knatten/missing-migration2
Browse files Browse the repository at this point in the history
Add missing migration
  • Loading branch information
knatten authored Sep 22, 2024
2 parents 4f85cea + e2ffaa7 commit 8bce04a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions quiz/migrations/0024_alter_question_socials_text.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.15 on 2024-09-22 14:47

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('quiz', '0023_rename_tweet_text_question_socials_text'),
]

operations = [
migrations.AlterField(
model_name='question',
name='socials_text',
field=models.CharField(blank=True, help_text='What to post when question gets posted on social media', max_length=280),
),
]

0 comments on commit 8bce04a

Please sign in to comment.