19 lines
397 B
Python
19 lines
397 B
Python
# Generated by Django 6.0 on 2025-12-24 14:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('Movement', '0002_expenseorcredit_credit'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='expenseorcredit',
|
|
name='prof',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|