Brian Stephan
333424025b
markov targets are queried and autogenerated based on chatter, but had a legacy name which is no longer in use for this, preferring the foreign keys to channel and consequently server. the name is really just informative these days, but was still being used to find targets, and thus was breaking when two servers had the same channel name in them. this fixes that
19 lines
399 B
Python
19 lines
399 B
Python
# Generated by Django 3.2.18 on 2023-05-04 22:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('markov', '0007_alter_markovtarget_channel'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='markovtarget',
|
|
name='name',
|
|
field=models.CharField(max_length=200),
|
|
),
|
|
]
|