20 lines
529 B
Python
20 lines
529 B
Python
# Generated by Django 4.0 on 2023-08-11 19:02
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('studenteval', '0007_cl_student_eval_id_alter_cl_student_eval_uuid'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='cl_student_eval',
|
|
name='uuid',
|
|
field=models.UUIDField(default=uuid.UUID('ba52e37d-25c3-44fa-bec8-2af3e6bd5458'), editable=False, primary_key=True, serialize=False),
|
|
),
|
|
]
|