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

make jobs.type 30 chars

parent 7d1d499e
No related branches found
No related tags found
1 merge request!346SDC-1111 add prearchiver service
Pipeline #73773 passed
# Generated by Django 5.0 on 2024-02-27 08:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('taskdatabase', '0043_activity_is_combined_activity_is_validated'),
]
operations = [
migrations.AlterField(
model_name='job',
name='type',
field=models.CharField(blank=True, db_index=True, default=None, max_length=30, null=True),
),
]
......@@ -522,7 +522,7 @@ class Configuration(models.Model):
class Job(models.Model):
type = models.CharField(db_index=True, max_length=20, default=None,null=True, blank=True)
type = models.CharField(db_index=True, max_length=30, default=None,null=True, blank=True)
task_id = models.IntegerField(null=True, blank=True)
job_id = models.IntegerField(null=True, blank=True)
timestamp = models.DateTimeField(default=timezone.now, blank=True)
......
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