Skip to content

Commit

Permalink
AlterField migration
Browse files Browse the repository at this point in the history
  • Loading branch information
CarolineDenis committed Jan 30, 2025
1 parent 273c371 commit dfcb483
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.15 on 2025-01-30 20:01

from django.db import migrations, models
import specifyweb.specify.models


class Migration(migrations.Migration):

dependencies = [
('specify', '0023_update_schema_config_text'),
]

operations = [
migrations.AlterField(
model_name='collectionobjectgroupjoin',
name='childco',
field=models.OneToOneField(db_column='ChildCOID', null=True, on_delete=specifyweb.specify.models.protect_with_blockers, related_name='cojo', to='specify.collectionobject'),
),
]

0 comments on commit dfcb483

Please sign in to comment.