Browse Source

Better defaults for threads.

Rafał Pitoń 10 years ago
parent
commit
dbdbf83faa
1 changed files with 2 additions and 2 deletions
  1. 2 2
      misago/threads/migrations/0002_threads_settings.py

+ 2 - 2
misago/threads/migrations/0002_threads_settings.py

@@ -21,7 +21,7 @@ def create_threads_settings_group(apps, schema_editor):
                     'description': _("Minimum allowed thread title length."),
                     'description': _("Minimum allowed thread title length."),
                     'legend': _("Thread titles"),
                     'legend': _("Thread titles"),
                     'python_type': 'int',
                     'python_type': 'int',
-                    'value': 8,
+                    'value': 5,
                     'field_extra': {
                     'field_extra': {
                         'min_value': 2,
                         'min_value': 2,
                         'max_value': 255,
                         'max_value': 255,
@@ -32,7 +32,7 @@ def create_threads_settings_group(apps, schema_editor):
                     'name': _("Maximum length"),
                     'name': _("Maximum length"),
                     'description': _("Maximum allowed thread length."),
                     'description': _("Maximum allowed thread length."),
                     'python_type': 'int',
                     'python_type': 'int',
-                    'value': 40,
+                    'value': 90,
                     'field_extra': {
                     'field_extra': {
                         'min_value': 2,
                         'min_value': 2,
                         'max_value': 255,
                         'max_value': 255,