# Generated by Django 3.0.8 on 2020-08-06 17:17 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ('astrobasis', '0045_auto_20200804_1707'), ('artsurvey', '0053_artsurveysource_nvss_primary'), ] operations = [ migrations.AddField( model_name='artsurveysource', name='first_primary', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='artsurveysource_primary', to='astrobasis.FIRST'), ), migrations.AddField( model_name='artsurveysource', name='sumss_primary', field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='artsurveysource_primary', to='astrobasis.SUMSS'), ), ]