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

Add atdb access token to object

parent 86418948
No related branches found
No related tags found
2 merge requests!8update dev-nico to make small changes,!7Add script csv gen
Pipeline #34355 passed
# Generated by Django 4.1 on 2022-08-11 11:56
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('lofardata', '0007_workspecification_selected_workflow'),
]
operations = [
migrations.AddField(
model_name='atdbprocessingsite',
name='access_token',
field=models.CharField(max_length=1000, null=True),
),
]
......@@ -83,6 +83,7 @@ class DataProductFilter(models.Model):
class ATDBProcessingSite(models.Model):
name = models.CharField(primary_key=True, max_length=100)
url = models.URLField()
access_token = models.CharField(max_length=1000, null=True)
class WorkSpecification(models.Model):
......
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