Files
RasadDam_Backend/apps/authentication/migrations/0051_organization_purchase_policy.py
2025-12-30 12:17:06 +03:30

19 lines
581 B
Python

# 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),
),
]