File: 0002_alter_captchastore_id.py

package info (click to toggle)
django-simple-captcha 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 668 kB
  • sloc: python: 1,596; makefile: 103; sh: 21
file content (17 lines) | stat: -rw-r--r-- 397 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Generated by Django 3.2.12 on 2022-03-06 11:51

from django.db import migrations, models


class Migration(migrations.Migration):
    dependencies = [
        ("captcha", "0001_initial"),
    ]

    operations = [
        migrations.AlterField(
            model_name="captchastore",
            name="id",
            field=models.AutoField(primary_key=True, serialize=False),
        ),
    ]