# Generated by Django 5.0 on 2025-12-30 10:19 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('authentication', '0056_remove_organization_purchase_policy'), ] operations = [ migrations.AddField( model_name='organization', name='purchase_policy', field=models.CharField(choices=[('INTERNAL_ONLY', 'Internal Only'), ('CROSS_COOP', 'Cross Cooperative Allowed')], default='INTERNAL_ONLY', help_text='defines where ranchers can purchase from', max_length=20), ), ]