123456789101112131415161718 |
- # Generated by Django 4.1.2 on 2025-03-14 22:51
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('staff', '0004_alter_listmodel_appid'),
- ]
- operations = [
- migrations.AddField(
- model_name='listmodel',
- name='is_edit',
- field=models.BooleanField(default=False, verbose_name='Whether the edit'),
- ),
- ]
|