diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2022-01-11 15:03:32 +0100 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2022-01-11 15:03:39 +0100 |
commit | 76ce07ad01474f8da04a877a6e6f0895a5829c89 (patch) | |
tree | 5d6bf875ec4213576cb9c822d2d908d934cf7bdf /client/migrations/0014_auto_20220111_1503.py | |
parent | increase max char count for additional fields (diff) | |
download | scout-subs-76ce07ad01474f8da04a877a6e6f0895a5829c89.tar.gz scout-subs-76ce07ad01474f8da04a877a6e6f0895a5829c89.zip |
create db migrations
Diffstat (limited to 'client/migrations/0014_auto_20220111_1503.py')
-rw-r--r-- | client/migrations/0014_auto_20220111_1503.py | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/client/migrations/0014_auto_20220111_1503.py b/client/migrations/0014_auto_20220111_1503.py new file mode 100644 index 0000000..99c7c18 --- /dev/null +++ b/client/migrations/0014_auto_20220111_1503.py @@ -0,0 +1,38 @@ +# Generated by Django 3.1.4 on 2022-01-11 14:03 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('client', '0013_keys_key_extra'), + ] + + operations = [ + migrations.AlterField( + model_name='documenttype', + name='custom_message_text', + field=models.CharField(default='', max_length=2048), + ), + migrations.AlterField( + model_name='keys', + name='key', + field=models.CharField(db_index=True, max_length=2048), + ), + migrations.AlterField( + model_name='keys', + name='key_extra', + field=models.CharField(default='', max_length=2048), + ), + migrations.AlterField( + model_name='keyval', + name='key', + field=models.CharField(db_index=True, max_length=2048), + ), + migrations.AlterField( + model_name='keyval', + name='value', + field=models.CharField(db_index=True, max_length=2048), + ), + ] |