-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📝 [#426] add help text for Object.object_type field
- Loading branch information
1 parent
0f2f90e
commit a8615f7
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
src/objects/core/migrations/0029_alter_object_object_type.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Generated by Django 4.2.11 on 2024-08-12 09:36 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("core", "0028_alter_objectrecord_data"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="object", | ||
name="object_type", | ||
field=models.ForeignKey( | ||
help_text="OBJECTTYPE in Objecttypes API", | ||
on_delete=django.db.models.deletion.PROTECT, | ||
to="core.objecttype", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters