19 lines
391 B
Python
19 lines
391 B
Python
# Generated by Django 5.0 on 2025-08-03 12:13
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('herd', '0009_rancher_herd_rancher'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='rancher',
|
|
name='without_herd',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|