diff --git a/mhackspace/requests/migrations/0007_auto_20170919_2023.py b/mhackspace/requests/migrations/0007_auto_20170919_2023.py new file mode 100644 index 0000000..eacb3ce --- /dev/null +++ b/mhackspace/requests/migrations/0007_auto_20170919_2023.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.4 on 2017-09-19 20:23 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('requests', '0006_auto_20170906_0804'), + ] + + operations = [ + migrations.AlterField( + model_name='userrequests', + name='cost', + field=models.DecimalField(decimal_places=2, help_text='Leave blank, if no associated cost, or add estimated cost if not sure.', max_digits=6), + ), + ] diff --git a/mhackspace/requests/models.py b/mhackspace/requests/models.py index edf32db..fb77b03 100644 --- a/mhackspace/requests/models.py +++ b/mhackspace/requests/models.py @@ -21,7 +21,7 @@ class UserRequests(models.Model): title = models.CharField(max_length=255, help_text='Whats being requested ?') request_type = models.IntegerField(choices=REQUEST_TYPES, null=False) cost = models.DecimalField( - max_digits=4, + max_digits=6, decimal_places=2, help_text='Leave blank, if no associated cost, or add estimated cost if not sure.' )