20 lines
459 B
Python
20 lines
459 B
Python
# Generated by Django 6.0 on 2026-01-15 13:12
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('contact', '0003_alter_contact_message'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='contact',
|
|
name='ip',
|
|
field=models.CharField(default=123, max_length=100, verbose_name='IP Adresi '),
|
|
preserve_default=False,
|
|
),
|
|
]
|