17 lines
405 B
Python
17 lines
405 B
Python
# 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),
|
|
),
|
|
]
|