forked from breatheco-de/apiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UserInvite.event_slug size increased
- Loading branch information
1 parent
29c665a
commit 867136a
Showing
2 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
breathecode/authenticate/migrations/0048_auto_20231128_1224.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Generated by Django 3.2.23 on 2023-11-28 12:24 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('authenticate', '0047_auto_20231026_2210'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='userinvite', | ||
name='asset_slug', | ||
field=models.SlugField(blank=True, | ||
help_text='If set, the user signed up because of an Asset', | ||
max_length=60, | ||
null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='userinvite', | ||
name='event_slug', | ||
field=models.SlugField(blank=True, | ||
help_text='If set, the user signed up because of an Event', | ||
max_length=120, | ||
null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters