19 lines
382 B
Python
19 lines
382 B
Python
|
# Generated by Django 2.2.5 on 2019-12-22 08:42
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('pygal', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='setting',
|
||
|
name='suspend_puplic',
|
||
|
field=models.BooleanField(default=True),
|
||
|
),
|
||
|
]
|