Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ucfchandra committed Nov 21, 2024
1 parent ccb56eb commit d993c86
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions announcements/migrations/0008_announcement_emoji.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.16 on 2024-11-21 20:46

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('announcements', '0007_alter_announcement_id_alter_audience_id_and_more'),
]

operations = [
migrations.AddField(
model_name='announcement',
name='emoji',
field=models.CharField(blank=True, max_length=255, null=True),
),
]

0 comments on commit d993c86

Please sign in to comment.