-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrated norms app to new state with new fileds
- Loading branch information
1 parent
6dba077
commit bcef448
Showing
12 changed files
with
688 additions
and
171 deletions.
There are no files selected for viewing
Binary file not shown.
52 changes: 52 additions & 0 deletions
52
webcentral/src/Datasets/migrations/0022_alter_dataset_applicationarea_and_more.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,52 @@ | ||
# Generated by Django 5.0.9 on 2024-11-18 12:25 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("Datasets", "0021_historydataset"), | ||
( | ||
"project_listing", | ||
"0003_alter_enargus_randdplanningcategory_and_more", | ||
), | ||
("tools_over", "0008_alter_tools_technicalstandardsprotocols"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="dataset", | ||
name="applicationArea", | ||
field=models.ManyToManyField( | ||
db_comment="Typical application area in which the dataset is used.", | ||
to="tools_over.applicationarea", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="dataset", | ||
name="classification", | ||
field=models.ManyToManyField( | ||
db_comment="General type of dataset - Which type or of to which typ belongs the dataset. E.g. framework, programming language, ...", | ||
to="tools_over.classification", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="dataset", | ||
name="focus", | ||
field=models.ManyToManyField( | ||
db_comment="Focus identifier - Selected focus (Definied by Wissensplattform)", | ||
max_length=200, | ||
to="tools_over.focus", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="dataset", | ||
name="specificApplication", | ||
field=models.ManyToManyField( | ||
blank=True, | ||
db_comment="Specific use cases - Identification of concrete examples of the use of the item in the construction sector/energy transition (equals project number)", | ||
to="project_listing.subproject", | ||
), | ||
), | ||
] |
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
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
Oops, something went wrong.