From ea2ce9d3069fa906474e356b7dbd209edd1ea1bd Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Mon, 23 Oct 2017 17:02:36 -0400 Subject: Moved functions to a 'misc' file. Added a settings model. Added initial version of an 'Invoice' model --- app/dispatch/migrations/0005_invoice_invoice_id.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 app/dispatch/migrations/0005_invoice_invoice_id.py (limited to 'app/dispatch/migrations/0005_invoice_invoice_id.py') diff --git a/app/dispatch/migrations/0005_invoice_invoice_id.py b/app/dispatch/migrations/0005_invoice_invoice_id.py new file mode 100644 index 0000000..23b7c49 --- /dev/null +++ b/app/dispatch/migrations/0005_invoice_invoice_id.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-10-23 20:36 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0004_auto_20171023_2032'), + ] + + operations = [ + migrations.AddField( + model_name='invoice', + name='invoice_id', + field=models.IntegerField(default=0), + preserve_default=False, + ), + ] -- cgit v1.2.3