Skip to content

Commit

Permalink
migration(sponsor): add special thanks choice
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwang44 committed Aug 22, 2022
1 parent 5eefda4 commit f99c838
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/sponsors/migrations/0029_add_special_thanks_choice.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1.7 on 2022-08-22 17:40

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('sponsors', '0028_sponsor_order'),
]

operations = [
migrations.AlterField(
model_name='sponsor',
name='level',
field=models.SmallIntegerField(choices=[(1, 'platinum'), (2, 'gold'), (3, 'silver'), (4, 'bronze'), (5, 'special'), (6, 'special-thanks'), (7, 'organizer'), (8, 'co-organizer')], verbose_name='level'),
),
]

0 comments on commit f99c838

Please sign in to comment.