Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion questions/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ class Migration(migrations.Migration):
),
),
("resolution", models.TextField(blank=True, null=True)),
("include_bots_in_aggregates", models.BooleanField(default=False)),
("include_bots_in_aggregates", models.BooleanField(default=True)),
("title", models.CharField(max_length=2000)),
("description", models.TextField(blank=True)),
("resolution_criteria", models.TextField(blank=True)),
Expand Down
2 changes: 1 addition & 1 deletion questions/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class QuestionType(models.TextChoices):

type = models.CharField(max_length=20, choices=QuestionType.choices)
resolution = models.TextField(null=True, blank=True)
include_bots_in_aggregates = models.BooleanField(default=False)
include_bots_in_aggregates = models.BooleanField(default=True)
Comment thread
lsabor marked this conversation as resolved.
question_weight = models.FloatField(default=1.0)
default_score_type = models.CharField(
max_length=20,
Expand Down
Loading