init project tests
This commit is contained in:
parent
d0ff728224
commit
7c9318c778
44 changed files with 4431 additions and 49 deletions
18
app/contact/migrations/0004_alter_contact_postal_code.py
Normal file
18
app/contact/migrations/0004_alter_contact_postal_code.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 5.2.2 on 2025-06-07 13:25
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('contact', '0003_alter_contact_options_contact_city_contact_country_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='contact',
|
||||
name='postal_code',
|
||||
field=models.CharField(blank=True, max_length=50, null=True, verbose_name='Postleitzahl'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue