mirror of
https://github.com/tjsga/scavenger-hunt-2021.git
synced 2025-04-09 22:10:18 -04:00
fix: increased flag length
This commit is contained in:
parent
1652f6fbad
commit
e56e0e37cc
18
hunt/apps/main/migrations/0011_alter_challenge_flag.py
Normal file
18
hunt/apps/main/migrations/0011_alter_challenge_flag.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 3.2.7 on 2021-09-20 17:21
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('main', '0010_remove_category_category'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='challenge',
|
||||
name='flag',
|
||||
field=models.CharField(max_length=100),
|
||||
),
|
||||
]
|
|
@ -15,7 +15,7 @@ class Challenge(models.Model):
|
|||
name = models.CharField(max_length=100, null=False, blank=False)
|
||||
short_description = models.CharField(max_length=500, null=False, blank=False)
|
||||
description = RichTextField(null=False, blank=False)
|
||||
flag = models.CharField(max_length=50, null=False, blank=False)
|
||||
flag = models.CharField(max_length=100, null=False, blank=False)
|
||||
points = models.IntegerField(null=False, blank=False)
|
||||
exclusive = models.BooleanField(default=False)
|
||||
locked = models.BooleanField(default=False)
|
||||
|
|
Loading…
Reference in New Issue
Block a user