Skip to content

Commit

Permalink
Include migration for SignupCode.max_uses
Browse files Browse the repository at this point in the history
  • Loading branch information
blag committed Sep 12, 2023
1 parent f1d025d commit 0d6e77e
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 0d6e77e

Please sign in to comment.