my migrations

This commit is contained in:
Shaxobff
2026-04-25 12:36:33 +05:00
parent e1b771e166
commit 5249f7e6f7
2 changed files with 96 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.2.7 on 2026-04-24 12:33
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('evaluation', '0034_remove_certificatemodel_file_url_and_more'),
]
operations = [
migrations.AddField(
model_name='autoevaluationmodel',
name='is_archived',
field=models.BooleanField(default=False, verbose_name='is archived'),
),
]