summaryrefslogtreecommitdiffstats
path: root/users/migrations/0002_identity_discoverable.py
blob: cbee6284d94221cef3185bf383cc696f8015a7cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 4.1.3 on 2022-11-26 01:29

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("users", "0001_initial"),
    ]

    operations = [
        migrations.AddField(
            model_name="identity",
            name="discoverable",
            field=models.BooleanField(default=True),
        ),
    ]