allow Markov contexts to be hidden from the web
Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
18
markov/migrations/0010_markovcontext_web_enabled.py
Normal file
18
markov/migrations/0010_markovcontext_web_enabled.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.0.9 on 2024-11-14 15:44
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('markov', '0009_alter_markovcontext_id_alter_markovstate_id_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='markovcontext',
|
||||
name='web_enabled',
|
||||
field=models.BooleanField(default=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user