From 43cbcc02861871e8c8dc0041fe78f00c0e3ad10c Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Tue, 20 Oct 2015 23:41:00 +0300 Subject: Added ACP+ support --- servo/migrations/0040_auto_20151020_2226.py | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 servo/migrations/0040_auto_20151020_2226.py (limited to 'servo/migrations/0040_auto_20151020_2226.py') diff --git a/servo/migrations/0040_auto_20151020_2226.py b/servo/migrations/0040_auto_20151020_2226.py new file mode 100644 index 0000000..558bdf5 --- /dev/null +++ b/servo/migrations/0040_auto_20151020_2226.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('servo', '0039_auto_20151016_1307'), + ] + + operations = [ + migrations.AddField( + model_name='repair', + name='acplus', + field=models.NullBooleanField(default=None, help_text='Unit is covered by AppleCare+'), + ), + migrations.AlterField( + model_name='template', + name='content', + field=models.TextField(verbose_name='Content'), + ), + migrations.AlterField( + model_name='template', + name='title', + field=models.CharField(default='New Template', unique=True, max_length=128, verbose_name='Title'), + ), + ] -- cgit v1.2.3