first commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
# Generated by Django 6.0 on 2026-01-15 13:36
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.conf import settings
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('contact', '0004_contact_ip'),
|
||||
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='contact',
|
||||
name='ip',
|
||||
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='IP Adresi '),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='contact',
|
||||
name='user',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL, verbose_name='Kullanıcı'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user