Files
atabackend/home/migrations/0006_aboutme_counter_active.py
Beyhan Oğur d50f14bcb1 first commit
2026-04-26 22:20:45 +03:00

19 lines
496 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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ı ?'),
),
]