19 lines
408 B
Python
19 lines
408 B
Python
# Generated by Django 5.2.7 on 2026-03-03 15:56
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0044_voter_target_door_visit'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='voter',
|
|
name='is_inactive',
|
|
field=models.BooleanField(db_index=True, default=False),
|
|
),
|
|
]
|