21 lines
605 B
Python
21 lines
605 B
Python
# Generated by Django 3.0.8 on 2020-08-06 17:16
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('astrobasis', '0045_auto_20200804_1707'),
|
|
('artsurvey', '0052_artsurveysource_sumss'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='artsurveysource',
|
|
name='nvss_primary',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='artsurveysource_primary', to='astrobasis.NVSS'),
|
|
),
|
|
]
|