aboutsummaryrefslogtreecommitdiff
path: root/app/dispatch/migrations/0007_invoice_paid.py
diff options
context:
space:
mode:
authorMitch Riedstra <Mitch@riedstra.us>2017-10-24 16:59:48 -0400
committerMitch Riedstra <Mitch@riedstra.us>2017-10-24 16:59:48 -0400
commit3e8b34be2fdeccf16c8b46f1ee518f970853768d (patch)
treeabcb7d0cb260790a2b4a746e3959f2e7ee3a33f7 /app/dispatch/migrations/0007_invoice_paid.py
parent4ee5893fd9c82228c62306fc7f5babdfc602e4c4 (diff)
downloaddispatch-tracker-3e8b34be2fdeccf16c8b46f1ee518f970853768d.tar.gz
dispatch-tracker-3e8b34be2fdeccf16c8b46f1ee518f970853768d.tar.xz
Adding in materialize source and templates
Diffstat (limited to 'app/dispatch/migrations/0007_invoice_paid.py')
-rw-r--r--app/dispatch/migrations/0007_invoice_paid.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/dispatch/migrations/0007_invoice_paid.py b/app/dispatch/migrations/0007_invoice_paid.py
new file mode 100644
index 0000000..d8fcd81
--- /dev/null
+++ b/app/dispatch/migrations/0007_invoice_paid.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.5 on 2017-10-24 14:20
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('dispatch', '0006_auto_20171023_2049'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='invoice',
+ name='paid',
+ field=models.BooleanField(default=False),
+ ),
+ ]