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

Add processing site migration

parent 0f51aa60
No related branches found
No related tags found
2 merge requests!8update dev-nico to make small changes,!7Add script csv gen
Pipeline #34301 failed
# Generated by Django 4.1 on 2022-08-10 15:56
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('lofardata', '0005_include_work_specification'),
]
operations = [
migrations.CreateModel(
name='ATDBProcessingSite',
fields=[
('name', models.CharField(max_length=100, primary_key=True, serialize=False)),
('url', models.URLField()),
],
),
migrations.AddField(
model_name='workspecification',
name='processing_site',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.DO_NOTHING, to='lofardata.atdbprocessingsite'),
),
]
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