This commit is contained in:
anhduy-tech
2025-12-31 16:44:06 +07:00
parent 8425d84102
commit 633a401aa6
6 changed files with 81 additions and 33 deletions

View File

@@ -0,0 +1,32 @@
# Generated by Django 5.1.7 on 2025-12-31 09:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('app', '0340_file_hashtag_co_ownership'),
]
operations = [
migrations.RenameField(
model_name='people',
old_name='facebook',
new_name='taxcode',
),
migrations.RemoveField(
model_name='people',
name='zalo',
),
migrations.AddField(
model_name='transaction_detail',
name='amount_received',
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
),
migrations.AddField(
model_name='transaction_detail',
name='amount_remaining',
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
),
]