Skip to content

Commit

Permalink
migration added for "better help text"
Browse files Browse the repository at this point in the history
  • Loading branch information
benabraham committed Aug 16, 2023
1 parent e2e96d1 commit c6f1ab7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions program/migrations/0011_alter_talk_video_id.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 4.2.1 on 2023-08-16 04:34

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("program", "0010_alter_speaker_pretalx_code_alter_talk_pretalx_code_and_more"),
]

operations = [
migrations.AlterField(
model_name="talk",
name="video_id",
field=models.CharField(
blank=True,
default="",
help_text="YouTube ID (from URL)",
max_length=100,
),
),
]

0 comments on commit c6f1ab7

Please sign in to comment.