20 lines
488 B
Python
20 lines
488 B
Python
# Generated by Django 5.0.4 on 2024-09-27 15:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('home', '0003_alter_botlogiclogs_options_alter_content_options_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='messagestyle',
|
|
name='name',
|
|
field=models.CharField(default='My Message Style', max_length=32),
|
|
preserve_default=False,
|
|
),
|
|
]
|