migrate purchase_policy

This commit is contained in:
2025-12-30 12:17:06 +03:30
parent b94484eaaf
commit adda663c47

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0 on 2025-12-30 08:45
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authentication', '0050_organization_service_area'),
]
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),
),
]