start oef

This commit is contained in:
Ross
2024-10-07 17:10:39 +01:00
parent 3f5f39c41c
commit 1e55d195e9
24 changed files with 468 additions and 0 deletions
@@ -0,0 +1,23 @@
# Generated by Django 5.0.2 on 2024-10-07 15:01
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('oef', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='entry',
name='oef_name',
field=models.CharField(blank=True, max_length=200),
),
migrations.AlterField(
model_name='entry',
name='comments',
field=models.TextField(blank=True),
),
]