supporters description should be text field

Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
rascencio 2016-02-07 20:19:11 -06:00
parent 06c0b3ec55
commit 2325d5288d
2 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('digitalglarus', '0004_supporter'),
]
operations = [
migrations.AlterField(
model_name='supporter',
name='description',
field=models.TextField(),
preserve_default=True,
),
]

View File

@ -15,4 +15,4 @@ class Message(models.Model):
class Supporter(models.Model):
name = models.CharField(max_length=200)
description = models.CharField(max_length=500)
description = models.TextField()