Skip to content

Commit

Permalink
Merge pull request #380 from localcontexts/subscription-model-typo-error
Browse files Browse the repository at this point in the history
Addressed typo error in Subscription model
  • Loading branch information
birbjam authored Oct 22, 2024
2 parents 0c83c1e + 7bc851b commit 1685b8c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions accounts/migrations/0030_alter_subscription_subscription_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 5.0.9 on 2024-10-18 18:56

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('accounts', '0029_alter_subscription_subscription_type'),
]

operations = [
migrations.AlterField(
model_name='subscription',
name='subscription_type',
field=models.CharField(choices=[('individual', 'Individual'), ('small', 'Small'), ('medium', 'Medium'), ('large', 'Large'), ('cc_notice_only', 'CC Notice Only'), ('cc_notices', 'CC Notices'), ('member', 'Member'), ('service_provider', 'Service Provider'), ('founding_supporter', 'Founding Supporter')], max_length=20),
),
]
2 changes: 1 addition & 1 deletion accounts/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class Subscription(models.Model):
('cc_notice_only', 'CC Notice Only'),
('cc_notices', 'CC Notices'),
('member', 'Member'),
('service_provide', 'Service Provider'),
('service_provider', 'Service Provider'),
('founding_supporter', 'Founding Supporter')
]

Expand Down

0 comments on commit 1685b8c

Please sign in to comment.