20 lines
465 B
Python
20 lines
465 B
Python
# Generated by Django 5.0.2 on 2024-04-11 13:46
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pruefplan_viewer', '0002_alter_examexecution_options'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Presences',
|
|
fields=[
|
|
('identification', models.CharField(max_length=200, primary_key=True, serialize=False)),
|
|
],
|
|
),
|
|
]
|