From ffb9b4111a891fda9e9e1ddf19de936bdbd664f8 Mon Sep 17 00:00:00 2001 From: Andrea Lepori Date: Sat, 20 Jun 2020 00:28:16 +0200 Subject: Document support --- client/migrations/0010_documenttype_enabled.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 client/migrations/0010_documenttype_enabled.py (limited to 'client/migrations/0010_documenttype_enabled.py') diff --git a/client/migrations/0010_documenttype_enabled.py b/client/migrations/0010_documenttype_enabled.py new file mode 100644 index 0000000..24928b0 --- /dev/null +++ b/client/migrations/0010_documenttype_enabled.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.7 on 2020-06-19 16:41 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('client', '0009_auto_20200619_1546'), + ] + + operations = [ + migrations.AddField( + model_name='documenttype', + name='enabled', + field=models.BooleanField(default=False), + ), + ] -- cgit v1.2.1