19 lines
490 B
Python
19 lines
490 B
Python
# Generated by Django 5.1.4 on 2024-12-10 02:58
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pms_integration', '0002_alter_pmsconfiguration_plugin_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='pmsconfiguration',
|
|
name='plugin_name',
|
|
field=models.CharField(blank=True, choices=[], max_length=255, null=True, verbose_name='Плагин'),
|
|
),
|
|
]
|