Skip to content
Snippets Groups Projects
Commit c8a1cb45 authored by Mattia Mancini's avatar Mattia Mancini
Browse files

Merge branch 'increase-length-workflow-commit-id' into 'master'

make workflow.commit_id field larger

See merge request !286
parents 077429a3 9e5c8042
No related branches found
No related tags found
1 merge request!286make workflow.commit_id field larger
Pipeline #46392 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): ...@@ -16,7 +16,7 @@ class Workflow(models.Model):
description = models.CharField(max_length=500, blank=True, null=True) description = models.CharField(max_length=500, blank=True, null=True)
workflow_uri = models.CharField(unique=True, max_length=30, 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) 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) path = models.CharField(max_length=100, blank=True, null=True)
oi_size_fraction = models.FloatField(blank=True, null=True) oi_size_fraction = models.FloatField(blank=True, null=True)
meta_scheduling = models.JSONField(null=True, blank=True) meta_scheduling = models.JSONField(null=True, blank=True)
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
{% include 'taskdatabase/pagination.html' %} {% include 'taskdatabase/pagination.html' %}
</div> </div>
</div> </div>
<p class="footer"> Version 18 March 2023 <p class="footer"> Version 27 March 2023
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment