aboutsummaryrefslogtreecommitdiff
path: root/users/migrations/0004_remove_captchastore_id_alter_captchastore_csrf_token.py
blob: 1dd16bcc888953e3c6b074c47f0182a1c7317898 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Generated by Django 4.0.6 on 2022-09-05 22:30

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('users', '0003_captchastore'),
    ]

    operations = [
        migrations.RemoveField(
            model_name='captchastore',
            name='id',
        ),
        migrations.AlterField(
            model_name='captchastore',
            name='csrf_token',
            field=models.CharField(max_length=100, primary_key=True, serialize=False),
        ),
    ]