-
Notifications
You must be signed in to change notification settings - Fork 809
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BugFix] Fix ephemeral storage default value (#4232)
* [BugFix] Fix default ephemeral storage * Add migration
- Loading branch information
1 parent
61b44d8
commit 76bd3f5
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
apps/challenges/migrations/0111_alter_challenge_ephemeral_storage_default.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,18 @@ | ||
# Generated by Django 2.2.20 on 2023-12-01 15:46 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('challenges', '0110_challenge_ephemeral_storage'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='challenge', | ||
name='ephemeral_storage', | ||
field=models.PositiveIntegerField(default=21, verbose_name='Ephemeral Storage (GB)'), | ||
), | ||
] |
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