diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-11-18 23:14:42 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-11-18 23:14:42 +0200 |
commit | dd9b4920713145e51eeef74063c15d715a746d37 (patch) | |
tree | da6104f47d60c6b381d65cc0a68f2f84494730c4 /servo/migrations | |
parent | ede335fca47f15f05b5134680dd2f254d91a3718 (diff) | |
download | Servo-dd9b4920713145e51eeef74063c15d715a746d37.tar.gz Servo-dd9b4920713145e51eeef74063c15d715a746d37.tar.bz2 Servo-dd9b4920713145e51eeef74063c15d715a746d37.zip |
Fail silently with invalid emails in cron jobs
Diffstat (limited to 'servo/migrations')
-rw-r--r-- | servo/migrations/0044_auto_20151118_2310.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/servo/migrations/0044_auto_20151118_2310.py b/servo/migrations/0044_auto_20151118_2310.py new file mode 100644 index 0000000..dddef82 --- /dev/null +++ b/servo/migrations/0044_auto_20151118_2310.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('servo', '0043_auto_20151109_1354'), + ] + + operations = [ + migrations.AlterField( + model_name='calendar', + name='hours_per_day', + field=models.FloatField(help_text='How many hours per day should be in this calendar', null=True, verbose_name='Hours per day', blank=True), + ), + ] |