From 2fcadfcc571f503ae591a30daf9bcf2fa9fdc314 Mon Sep 17 00:00:00 2001 From: dekzter Date: Mon, 7 Apr 2025 15:02:01 -0400 Subject: [PATCH] forgot to commit migration --- .../0015_recording_custom_properties.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 apps/channels/migrations/0015_recording_custom_properties.py diff --git a/apps/channels/migrations/0015_recording_custom_properties.py b/apps/channels/migrations/0015_recording_custom_properties.py new file mode 100644 index 00000000..3c01fc61 --- /dev/null +++ b/apps/channels/migrations/0015_recording_custom_properties.py @@ -0,0 +1,18 @@ +# Generated by Django 5.1.6 on 2025-04-07 16:47 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatcharr_channels', '0014_recording'), + ] + + operations = [ + migrations.AddField( + model_name='recording', + name='custom_properties', + field=models.TextField(blank=True, null=True), + ), + ]