[damned-lies] Extended module.bugs_base to 250 chars
- From: Claude Paroz <claudep src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [damned-lies] Extended module.bugs_base to 250 chars
- Date: Thu, 5 May 2016 21:34:32 +0000 (UTC)
commit a632a99f661dc01e5c12e8b3cf823db12ab818ac
Author: Claude Paroz <claude 2xlibre net>
Date: Thu May 5 23:33:44 2016 +0200
Extended module.bugs_base to 250 chars
stats/migrations/0007_extend_bugs_base.py | 19 +++++++++++++++++++
stats/models.py | 2 +-
2 files changed, 20 insertions(+), 1 deletions(-)
---
diff --git a/stats/migrations/0007_extend_bugs_base.py b/stats/migrations/0007_extend_bugs_base.py
new file mode 100644
index 0000000..52a9b12
--- /dev/null
+++ b/stats/migrations/0007_extend_bugs_base.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('stats', '0006_add_domain_branch_from_to'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='module',
+ name='bugs_base',
+ field=models.CharField(max_length=250, null=True, blank=True),
+ ),
+ ]
diff --git a/stats/models.py b/stats/models.py
index 13d2176..804adba 100644
--- a/stats/models.py
+++ b/stats/models.py
@@ -79,7 +79,7 @@ class Module(models.Model):
help_text="Automatically updated if the module contains a doap file.")
description = models.TextField(null=True, blank=True)
comment = models.TextField(null=True, blank=True)
- bugs_base = models.CharField(max_length=50, null=True, blank=True)
+ bugs_base = models.CharField(max_length=250, null=True, blank=True)
bugs_product = models.CharField(max_length=50, null=True, blank=True)
bugs_component = models.CharField(max_length=50, null=True, blank=True)
vcs_type = models.CharField(max_length=5, choices=VCS_TYPE_CHOICES)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]