Added feature to transfer money to another account + some minor improvements
This commit is contained in:
parent
2bab323b86
commit
8702233934
11 changed files with 164 additions and 30 deletions
17
app/migrations/0004_registertransaction_is_transfer.py
Normal file
17
app/migrations/0004_registertransaction_is_transfer.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
# Generated by Django 4.1.6 on 2023-04-14 20:01
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("app", "0003_user_hide_from_userlist"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="registertransaction",
|
||||
name="is_transfer",
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue