Skip to content
Snippets Groups Projects
0031_profiletoken.py 510 B
Newer Older
# Generated by Django 2.2.17 on 2023-02-17 13:29

from django.db import migrations


class Migration(migrations.Migration):

    dependencies = [
        ('portal', '0030_auto_20230201_1554'),
    ]

    operations = [
        migrations.CreateModel(
            name='ProfileToken',
            fields=[
            ],
            options={
                'proxy': True,
                'indexes': [],
                'constraints': [],
            },
            bases=('portal.profile',),
        ),
    ]