19 lines
482 B
Python
19 lines
482 B
Python
# Generated by Django 5.2.7 on 2026-01-24 03:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0002_eventparticipation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='donation',
|
|
name='method',
|
|
field=models.CharField(choices=[('Cash', 'Cash'), ('Check', 'Check'), ('Credit/Debit', 'Credit/Debit')], default='Check', max_length=20),
|
|
),
|
|
]
|