add notes app
This commit is contained in:
parent
acb398be1c
commit
a29376b3c5
38 changed files with 1720 additions and 45 deletions
18
app/notizen/migrations/0002_alter_notiz_object_id.py
Normal file
18
app/notizen/migrations/0002_alter_notiz_object_id.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.2.3 on 2025-06-10 11:20
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('notizen', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='notiz',
|
||||
name='object_id',
|
||||
field=models.CharField(blank=True, help_text='ID des verknüpften Objekts (unterstützt sowohl Integer als auch UUID)', max_length=255, null=True, verbose_name='Objekt ID'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue