diff --git a/atdb/taskdatabase/migrations/0017_auto_20220412_1944.py b/atdb/taskdatabase/migrations/0017_auto_20220412_1944.py new file mode 100644 index 0000000000000000000000000000000000000000..67eaed9cf3cbe3ed964db059d9036d533bca6e60 --- /dev/null +++ b/atdb/taskdatabase/migrations/0017_auto_20220412_1944.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.4 on 2022-04-12 17:44 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('taskdatabase', '0016_auto_20220412_1356'), + ] + + operations = [ + migrations.AlterField( + model_name='configuration', + name='value', + field=models.CharField(max_length=5120), + ), + ] diff --git a/atdb/taskdatabase/models.py b/atdb/taskdatabase/models.py index 3965e04c69f325e14a0c0e14ad9b316e8752d70c..3a770aa02f4adf7425479d30d119969050e06e71 100644 --- a/atdb/taskdatabase/models.py +++ b/atdb/taskdatabase/models.py @@ -185,7 +185,7 @@ class Configuration(models.Model): filter = models.CharField(max_length=30, blank=True, null=True) key = models.CharField(max_length=50) # large value needed to hold the dcache token - value = models.CharField(max_length=3000) + value = models.CharField(max_length=5120) # the representation of the value in the REST API def __str__(self): diff --git a/atdb/taskdatabase/templates/taskdatabase/index.html b/atdb/taskdatabase/templates/taskdatabase/index.html index 61b272743c9f245a4d11c43bae7efbd381633d6d..a1c245eae103e4f1db9ab8a42cee8e80eab97e66 100644 --- a/atdb/taskdatabase/templates/taskdatabase/index.html +++ b/atdb/taskdatabase/templates/taskdatabase/index.html @@ -34,7 +34,7 @@ {% include 'taskdatabase/pagination.html' %} </div> </div> - <p class="footer"> Version 1.0.0 (12 apr 2021 - 13:00) + <p class="footer"> Version 1.0.0 (12 apr 2021 - 20:00) </div>