From 450667c5135c2e933682d6b825da992a1f4bff2f Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Tue, 29 Sep 2015 11:01:51 +0300 Subject: Added Location field to Invoice --- servo/migrations/0032_auto_20150929_1101.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 servo/migrations/0032_auto_20150929_1101.py (limited to 'servo/migrations/0032_auto_20150929_1101.py') diff --git a/servo/migrations/0032_auto_20150929_1101.py b/servo/migrations/0032_auto_20150929_1101.py new file mode 100644 index 0000000..e7b17ec --- /dev/null +++ b/servo/migrations/0032_auto_20150929_1101.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('servo', '0031_auto_20150929_0010'), + ] + + operations = [ + migrations.AddField( + model_name='invoice', + name='location', + field=models.ForeignKey(blank=True, editable=False, to='servo.Location', null=True), + ), + migrations.AlterField( + model_name='invoice', + name='is_paid', + field=models.BooleanField(default=False, verbose_name='Paid'), + ), + ] -- cgit v1.2.3