Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
knatten committed Sep 22, 2024
1 parent 4f85cea commit e2ffaa7
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 e2ffaa7

Please sign in to comment.