21 lines
534 B
Python
21 lines
534 B
Python
# Generated by Django 4.1.3 on 2022-11-30 17:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('Clientes', '0003_alter_timbres_options_timbres_created_at'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='saldoModel',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('saldo', models.IntegerField()),
|
|
],
|
|
),
|
|
]
|