# Generated by Django 2.2.24 on 2024-02-23 11:05 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('archaeological_finds', '0118_auto_20240222_1745'), ] operations = [ migrations.RenameField( model_name='find', old_name='museum_non_conformity_comment', new_name='museum_conformity_comment', ), migrations.RenameField( model_name='historicalfind', old_name='museum_non_conformity_comment', new_name='museum_conformity_comment', ), migrations.AlterField( model_name='find', name='museum_conformity_comment', field=models.TextField(blank=True, default='', verbose_name='Comment on conformity'), ), migrations.AlterField( model_name='historicalfind', name='museum_conformity_comment', field=models.TextField(blank=True, default='', verbose_name='Comment on conformity'), ), ]