19 lines
480 B
Python
19 lines
480 B
Python
# Generated by Django 6.0.2 on 2026-02-18 12:21
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('web', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='tbdictumandquotes',
|
|
name='bIsChecked',
|
|
field=models.BooleanField(db_index=True, default=True, help_text='Цитата проверена.', verbose_name='Проверен'),
|
|
),
|
|
]
|