Skip to content
Snippets Groups Projects
Commit 7289d6f3 authored by Nico Vermaas's avatar Nico Vermaas
Browse files

Merge branch 'master' into 'release'

Master

See merge request !238
parents 4db2338e c0cd23fe
No related branches found
No related tags found
1 merge request!238Master
Pipeline #28671 passed
# 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),
),
]
......@@ -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):
......
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment