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