add exam collections

This commit is contained in:
Ross
2024-01-29 09:58:18 +00:00
parent e89cf704ed
commit 04dcb74e67
15 changed files with 186 additions and 7 deletions
+21
View File
@@ -0,0 +1,21 @@
# Generated by Django 4.1.4 on 2024-01-29 09:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('generic', '0010_userprofile_site'),
]
operations = [
migrations.CreateModel(
name='ExamCollection',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=255)),
('date', models.DateField(blank=True, null=True)),
],
),
]