diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-10-23 17:02:36 -0400 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-10-23 17:02:36 -0400 |
| commit | ea2ce9d3069fa906474e356b7dbd209edd1ea1bd (patch) | |
| tree | 1228ab89d07369e910846c53a13b2b6407c19b1a /app/dispatch/migrations/0002_owner.py | |
| parent | d4522cf8fc8e8978e65980d13debe38658903735 (diff) | |
| download | dispatch-tracker-ea2ce9d3069fa906474e356b7dbd209edd1ea1bd.tar.gz dispatch-tracker-ea2ce9d3069fa906474e356b7dbd209edd1ea1bd.tar.xz | |
Moved functions to a 'misc' file. Added a settings model. Added initial version of an 'Invoice' model
Diffstat (limited to 'app/dispatch/migrations/0002_owner.py')
| -rw-r--r-- | app/dispatch/migrations/0002_owner.py | 26 |
1 files changed, 26 insertions, 0 deletions
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)), + ], + ), + ] |
