# Generated by Django 4.0.8 on 2022-12-06 13:07 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ('contenttypes', '0002_remove_content_type_name'), ] operations = [ migrations.CreateModel( name='RoleImage', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False)), ('created', models.DateTimeField(auto_now_add=True, null=True)), ('last_updated', models.DateTimeField(auto_now=True, null=True)), ('image', models.CharField(max_length=255)), ('object_id', models.PositiveIntegerField(blank=True, null=True)), ('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.contenttype')), ], ), migrations.AddIndex( model_name='roleimage', index=models.Index(fields=['content_type', 'object_id'], name='netbox_topo_content_9d87d4_idx'), ), ]