Files
ptools/auto_pt/migrations/0006_alter_notify_custom_server.py
2022-12-25 21:44:46 +08:00

19 lines
496 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Generated by Django 4.1.2 on 2022-12-25 21:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('auto_pt', '0005_alter_taskjob_replace_existing'),
]
operations = [
migrations.AlterField(
model_name='notify',
name='custom_server',
field=models.URLField(blank=True, help_text='IYuu与BARK请必填详情参考教程', null=True, verbose_name='服务器'),
),
]