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

make workflow.commit_id field larger

parent 077429a3
Branches
No related tags found
1 merge request!286make workflow.commit_id field larger
Pipeline #46391 passed
# Generated by Django 3.1.4 on 2023-03-27 08:29
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('taskdatabase', '0019_task_archive'),
]
operations = [
migrations.AlterField(
model_name='workflow',
name='commit_id',
field=models.CharField(blank=True, max_length=100, null=True),
),
]
......@@ -16,7 +16,7 @@ class Workflow(models.Model):
description = models.CharField(max_length=500, blank=True, null=True)
workflow_uri = models.CharField(unique=True, max_length=30, blank=True, null=True)
repository = models.CharField(max_length=100, blank=True, null=True)
commit_id = models.CharField(max_length=15, blank=True, null=True)
commit_id = models.CharField(max_length=100, blank=True, null=True)
path = models.CharField(max_length=100, blank=True, null=True)
oi_size_fraction = models.FloatField(blank=True, null=True)
meta_scheduling = models.JSONField(null=True, blank=True)
......
......@@ -34,7 +34,7 @@
{% include 'taskdatabase/pagination.html' %}
</div>
</div>
<p class="footer"> Version 18 March 2023
<p class="footer"> Version 27 March 2023
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment