21 lines
675 B
Python
21 lines
675 B
Python
# Generated by Django 5.0 on 2025-12-22 06:12
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('authentication', '0049_alter_bankaccountinformation_account_and_more'),
|
|
('herd', '0020_alter_rancher_ignore_purchase_limit'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='rancher',
|
|
name='organization',
|
|
field=models.ForeignKey(help_text='connect ranchers to their specific Taavoni', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='ranchers', to='authentication.organization'),
|
|
),
|
|
]
|