29 lines
1003 B
Python
29 lines
1003 B
Python
# Generated by Django 6.0.4 on 2026-04-23 11:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('evaluation', '0031_remove_autoevaluationmodel_object_location_city_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='CertificateModel',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('title', models.CharField(max_length=255, verbose_name='title')),
|
|
('file_url', models.URLField(max_length=255, verbose_name='file url')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Certificate',
|
|
'verbose_name_plural': 'Certificates',
|
|
'db_table': 'certificate',
|
|
},
|
|
),
|
|
]
|