17 lines
370 B
Python
17 lines
370 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounting', '0004_party_funzone_fields'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='treasurytxn',
|
|
name='source',
|
|
field=models.CharField(blank=True, default='', max_length=120),
|
|
),
|
|
]
|