Implement more payout management

This commit is contained in:
2023-05-06 11:52:42 +01:00
parent ddfee0b328
commit 6ea82857f2
6 changed files with 128 additions and 18 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.1.7 on 2023-05-06 10:33
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0037_payout'),
]
operations = [
migrations.AddField(
model_name='payout',
name='response',
field=models.JSONField(blank=True, default=dict, null=True),
),
]