Make sending references configurable

This commit is contained in:
2023-03-14 09:38:39 +00:00
parent dce33ca11c
commit a855e7e5b5
4 changed files with 24 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.1.7 on 2023-03-14 09:36
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0023_alter_trade_linked'),
]
operations = [
migrations.AddField(
model_name='ad',
name='send_reference',
field=models.BooleanField(default=True),
),
]