Skip to content

Commit

Permalink
Merge pull request #375 from pinax/include-migration
Browse files Browse the repository at this point in the history
Include migration for SignupCode.max_uses
  • Loading branch information
uhurusurfa committed Sep 14, 2023
2 parents f1d025d + 0d6e77e commit 8c7fe02
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions account/migrations/0006_alter_signupcode_max_uses.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.5 on 2023-09-12 20:52

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('account', '0005_update_default_language'),
]

operations = [
migrations.AlterField(
model_name='signupcode',
name='max_uses',
field=models.PositiveIntegerField(default=1, verbose_name='max uses'),
),
]

0 comments on commit 8c7fe02

Please sign in to comment.