diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-10-30 20:47:10 +0100 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-10-30 20:47:10 +0100 |
commit | 80653d69a0dd7bb6a089b6fda05fbe98ff7ac9fb (patch) | |
tree | 2cd0d469857713b59a0c92271aee0b349aaa5b65 /client/migrations | |
parent | remove default hide error fields (diff) | |
download | scout-subs-80653d69a0dd7bb6a089b6fda05fbe98ff7ac9fb.tar.gz scout-subs-80653d69a0dd7bb6a089b6fda05fbe98ff7ac9fb.zip |
renaming, max partecipant number, only "capi" docs
Diffstat (limited to 'client/migrations')
-rw-r--r-- | client/migrations/0005_documenttype_staff_only.py | 18 | ||||
-rw-r--r-- | client/migrations/0006_documenttype_max_instances.py | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/client/migrations/0005_documenttype_staff_only.py b/client/migrations/0005_documenttype_staff_only.py new file mode 100644 index 0000000..3211c26 --- /dev/null +++ b/client/migrations/0005_documenttype_staff_only.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.2 on 2020-10-30 16:46 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('client', '0004_auto_20200903_1828'), + ] + + operations = [ + migrations.AddField( + model_name='documenttype', + name='staff_only', + field=models.BooleanField(default=False), + ), + ] diff --git a/client/migrations/0006_documenttype_max_instances.py b/client/migrations/0006_documenttype_max_instances.py new file mode 100644 index 0000000..750ff0e --- /dev/null +++ b/client/migrations/0006_documenttype_max_instances.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.2 on 2020-10-30 17:11 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('client', '0005_documenttype_staff_only'), + ] + + operations = [ + migrations.AddField( + model_name='documenttype', + name='max_instances', + field=models.IntegerField(default=0), + ), + ] |