19 lines
591 B
Python
19 lines
591 B
Python
# Generated by Django 5.0 on 2025-12-30 08:55
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('authentication', '0052_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),
|
|
),
|
|
]
|