19 lines
496 B
Python
19 lines
496 B
Python
# Generated by Django 6.0 on 2026-01-13 11:06
|
||
|
||
from django.db import migrations, models
|
||
|
||
|
||
class Migration(migrations.Migration):
|
||
|
||
dependencies = [
|
||
('home', '0005_aboutme_done_aboutme_great_aboutme_team_and_more'),
|
||
]
|
||
|
||
operations = [
|
||
migrations.AddField(
|
||
model_name='aboutme',
|
||
name='counter_active',
|
||
field=models.BooleanField(choices=[(True, 'Evet'), (False, 'Hayır')], default=False, verbose_name='Yayındamı ?'),
|
||
),
|
||
]
|