2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-08 00:08:49 +00:00
InvenTree/InvenTree/common/migrations/0013_auto_20210912_1443.py
2021-09-12 16:49:47 +02:00

19 lines
472 B
Python

# Generated by Django 3.2.4 on 2021-09-12 14:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('common', '0012_webhookendpoint'),
]
operations = [
migrations.AddField(
model_name='webhookendpoint',
name='secret',
field=models.CharField(blank=True, help_text='Shared secret for HMAC', max_length=255, null=True, verbose_name='Secret'),
),
]