aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorAndrea Lepori <alepori@student.ethz.ch>2022-01-11 15:03:32 +0100
committerAndrea Lepori <alepori@student.ethz.ch>2022-01-11 15:03:39 +0100
commit76ce07ad01474f8da04a877a6e6f0895a5829c89 (patch)
tree5d6bf875ec4213576cb9c822d2d908d934cf7bdf /client
parentincrease max char count for additional fields (diff)
downloadscout-subs-76ce07ad01474f8da04a877a6e6f0895a5829c89.tar.gz
scout-subs-76ce07ad01474f8da04a877a6e6f0895a5829c89.zip
create db migrations
Diffstat (limited to 'client')
-rw-r--r--client/migrations/0014_auto_20220111_1503.py38
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),
+ ),
+ ]