diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-06-20 00:28:16 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-06-20 00:28:16 +0200 |
commit | ffb9b4111a891fda9e9e1ddf19de936bdbd664f8 (patch) | |
tree | cbd563acbfb97d2cad4f7da425de412aad00e5dd /client/migrations/0007_auto_20200619_1508.py | |
parent | More data for users (diff) | |
download | scout-subs-ffb9b4111a891fda9e9e1ddf19de936bdbd664f8.tar.gz scout-subs-ffb9b4111a891fda9e9e1ddf19de936bdbd664f8.zip |
Document support
Diffstat (limited to 'client/migrations/0007_auto_20200619_1508.py')
-rw-r--r-- | client/migrations/0007_auto_20200619_1508.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/client/migrations/0007_auto_20200619_1508.py b/client/migrations/0007_auto_20200619_1508.py new file mode 100644 index 0000000..a5f2669 --- /dev/null +++ b/client/migrations/0007_auto_20200619_1508.py @@ -0,0 +1,26 @@ +# Generated by Django 3.0.7 on 2020-06-19 13:08 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('client', '0006_auto_20200619_1049'), + ] + + operations = [ + migrations.RemoveField( + model_name='yearsubscription', + name='group', + ), + migrations.RemoveField( + model_name='yearsubscription', + name='school', + ), + migrations.AlterField( + model_name='yearsubscription', + name='year', + field=models.CharField(default='', max_length=250), + ), + ] |