Rename publishable to approved, add profile option to approve by default.
[redakcja.git] / src / team / migrations / 0002_profile_approve_by_default.py
1 # Generated by Django 4.1.9 on 2023-10-10 15:28
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ("team", "0001_initial"),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name="profile",
15             name="approve_by_default",
16             field=models.BooleanField(default=False),
17             preserve_default=False,
18         ),
19     ]