app.polisplexity.tech/pxy_bots/migrations/0008_botreplytemplate.py
Ekaropolus 7e135e92ba
All checks were successful
continuous-integration/drone/push Build is passing
Bot Reply template
2025-09-17 00:20:26 -06:00

39 lines
2.3 KiB
Python

# Generated by Django 5.0.3 on 2025-09-17 06:20
import django.core.validators
import django.db.models.deletion
import django.utils.timezone
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('pxy_bots', '0007_connection_alter_telegrambot_options_and_more'),
]
operations = [
migrations.CreateModel(
name='BotReplyTemplate',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('trigger', models.CharField(choices=[('message', 'Message (no command)'), ('text_command', 'Text command (/cmd)'), ('callback', 'Callback')], default='message', max_length=20)),
('command_name', models.CharField(blank=True, help_text="Without leading '/'. Blank = default for this trigger.", max_length=80, null=True)),
('text_template', models.TextField(blank=True, default='', help_text='Use ${args}, ${user_id}, ${lat}, ${lon}, etc.')),
('parse_mode', models.CharField(choices=[('none', 'None'), ('markdown', 'Markdown'), ('html', 'HTML')], default='markdown', max_length=20)),
('media_url', models.CharField(blank=True, default='', help_text='Optional image/video URL', max_length=600)),
('buttons_json', models.TextField(blank=True, default='', help_text='Optional JSON: [{"label":"Open","kind":"open_url","url":"https://..."}]')),
('enabled', models.BooleanField(default=True)),
('priority', models.PositiveIntegerField(default=100, help_text='Lower runs first', validators=[django.core.validators.MinValueValidator(1)])),
('note', models.CharField(blank=True, default='', max_length=240)),
('created_at', models.DateTimeField(default=django.utils.timezone.now, editable=False)),
('updated_at', models.DateTimeField(auto_now=True)),
('bot', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='reply_templates', to='pxy_bots.telegrambot')),
],
options={
'ordering': ['priority', 'id'],
'indexes': [models.Index(fields=['bot', 'trigger', 'command_name', 'enabled', 'priority'], name='pxy_bots_bo_bot_id_19f2c3_idx')],
},
),
]