mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
27 lines
702 B
Python
27 lines
702 B
Python
# Generated by Django 5.1.4 on 2025-01-15 23:06
|
|
|
|
import django.utils.timezone
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('clients', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='client',
|
|
name='created_at',
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='client',
|
|
name='debt',
|
|
field=models.DecimalField(decimal_places=2, default=1, max_digits=10),
|
|
preserve_default=False,
|
|
),
|
|
]
|