You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
511 B
19 lines
511 B
# Generated by Django 5.1.5 on 2025-02-06 18:13
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tasks', '0002_movimientos_cuentas_alter_cuenta_fecha_creacion_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='movimientos',
|
|
name='cuentas',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='tasks.cuenta'),
|
|
),
|
|
]
|
|
|