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/0002_owner.py | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app/dispatch/migrations/0002_owner.py (limited to 'app/dispatch/migrations/0002_owner.py') diff --git a/app/dispatch/migrations/0002_owner.py b/app/dispatch/migrations/0002_owner.py new file mode 100644 index 0000000..689ca6b --- /dev/null +++ b/app/dispatch/migrations/0002_owner.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-10-23 19:14 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='Owner', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('name', models.CharField(max_length=256)), + ('address', models.CharField(max_length=256)), + ('city', models.CharField(max_length=256)), + ('state', models.CharField(max_length=256)), + ('zip_code', models.CharField(max_length=256)), + ], + ), + ] -- cgit v1.2.3