aboutsummaryrefslogtreecommitdiffstats
path: root/client/migrations/0012_document_group.py
diff options
context:
space:
mode:
authorAndrea Lepori <alepori@student.ethz.ch>2020-06-20 00:28:16 +0200
committerAndrea Lepori <alepori@student.ethz.ch>2020-06-20 00:28:16 +0200
commitffb9b4111a891fda9e9e1ddf19de936bdbd664f8 (patch)
treecbd563acbfb97d2cad4f7da425de412aad00e5dd /client/migrations/0012_document_group.py
parentMore data for users (diff)
downloadscout-subs-ffb9b4111a891fda9e9e1ddf19de936bdbd664f8.tar.gz
scout-subs-ffb9b4111a891fda9e9e1ddf19de936bdbd664f8.zip
Document support
Diffstat (limited to 'client/migrations/0012_document_group.py')
-rw-r--r--client/migrations/0012_document_group.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/client/migrations/0012_document_group.py b/client/migrations/0012_document_group.py
new file mode 100644
index 0000000..a1fbabc
--- /dev/null
+++ b/client/migrations/0012_document_group.py
@@ -0,0 +1,20 @@
+# Generated by Django 3.0.7 on 2020-06-19 21:05
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('auth', '0011_update_proxy_permissions'),
+ ('client', '0011_keys'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='document',
+ name='group',
+ field=models.ForeignKey(default=None, on_delete=django.db.models.deletion.CASCADE, to='auth.Group'),
+ ),
+ ]