daily reports v1
parent
e9160d278d
commit
3eba807e5d
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,24 @@
|
||||
# Generated by Django 4.2.5 on 2023-09-26 08:39
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('osinacore', '0040_staffprofile_staff_id'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='DailyReport',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('text', models.TextField(blank=True)),
|
||||
('date', models.CharField(max_length=40)),
|
||||
('time', models.CharField(max_length=40)),
|
||||
('staff', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='dailyreport_staff', to='osinacore.staffprofile')),
|
||||
],
|
||||
),
|
||||
]
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue