-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
425 additions
and
274 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
75 changes: 75 additions & 0 deletions
75
...roducten/locaties/migrations/0004_alter_locatie_huisnummer_alter_locatie_naam_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,75 @@ | ||
# Generated by Django 4.2.17 on 2025-01-31 13:34 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("locaties", "0003_organisatie_code"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="locatie", | ||
name="huisnummer", | ||
field=models.CharField( | ||
blank=True, max_length=10, null=True, verbose_name="huisnummer" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="locatie", | ||
name="naam", | ||
field=models.CharField(max_length=255, verbose_name="naam"), | ||
), | ||
migrations.AlterField( | ||
model_name="locatie", | ||
name="stad", | ||
field=models.CharField( | ||
blank=True, max_length=255, null=True, verbose_name="stad" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="locatie", | ||
name="straat", | ||
field=models.CharField( | ||
blank=True, max_length=255, null=True, verbose_name="straat" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="organisatie", | ||
name="code", | ||
field=models.CharField( | ||
help_text="code van de organisatie.", | ||
max_length=255, | ||
unique=True, | ||
verbose_name="code", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="organisatie", | ||
name="huisnummer", | ||
field=models.CharField( | ||
blank=True, max_length=10, null=True, verbose_name="huisnummer" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="organisatie", | ||
name="naam", | ||
field=models.CharField(max_length=255, verbose_name="naam"), | ||
), | ||
migrations.AlterField( | ||
model_name="organisatie", | ||
name="stad", | ||
field=models.CharField( | ||
blank=True, max_length=255, null=True, verbose_name="stad" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="organisatie", | ||
name="straat", | ||
field=models.CharField( | ||
blank=True, max_length=255, null=True, verbose_name="straat" | ||
), | ||
), | ||
] |
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
89 changes: 89 additions & 0 deletions
89
...roducten/producttypen/migrations/0013_alter_contentlabel_naam_alter_link_naam_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,89 @@ | ||
# Generated by Django 4.2.17 on 2025-01-31 13:34 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("producttypen", "0012_delete_vraag"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="contentlabel", | ||
name="naam", | ||
field=models.CharField(max_length=255, unique=True), | ||
), | ||
migrations.AlterField( | ||
model_name="link", | ||
name="naam", | ||
field=models.CharField( | ||
help_text="Naam van de link.", max_length=255, verbose_name="naam" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="prijsoptie", | ||
name="beschrijving", | ||
field=models.CharField( | ||
help_text="Korte beschrijving van de optie.", | ||
max_length=255, | ||
verbose_name="beschrijving", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="producttype", | ||
name="code", | ||
field=models.CharField( | ||
help_text="code van het product type.", | ||
max_length=255, | ||
unique=True, | ||
verbose_name="code", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="producttypetranslation", | ||
name="naam", | ||
field=models.CharField( | ||
help_text="naam van het product type.", | ||
max_length=255, | ||
verbose_name="product type naam", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="producttypetranslation", | ||
name="samenvatting", | ||
field=models.TextField( | ||
default="", | ||
help_text="Korte samenvatting van het product type.", | ||
verbose_name="samenvatting", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="thema", | ||
name="beschrijving", | ||
field=models.TextField( | ||
blank=True, | ||
default="", | ||
help_text="Beschrijving van het thema, ondersteund markdown format.", | ||
verbose_name="beschrijving", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="thema", | ||
name="naam", | ||
field=models.CharField( | ||
help_text="Naam van het thema.", max_length=255, verbose_name="naam" | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="uniformeproductnaam", | ||
name="naam", | ||
field=models.CharField( | ||
help_text="Uniforme product naam", | ||
max_length=255, | ||
unique=True, | ||
verbose_name="naam", | ||
), | ||
), | ||
] |
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
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
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
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