File: 0004_auto_20191119_2125.py

package info (click to toggle)
python-django-test-migrations 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 436 kB
  • sloc: python: 1,479; makefile: 26
file content (26 lines) | stat: -rw-r--r-- 565 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Generated by Django 2.2.7 on 2019-11-19 21:25

"""
This migration is named incorrectly.

We use it as a test for wrong autonames.
Please, do not rename it!
"""

from django.db import migrations, models


class Migration(migrations.Migration):
    """Removes the default value from ``is_clean`` from ``SomeItem``."""

    dependencies = [
        ('main_app', '0003_update_is_clean'),
    ]

    operations = [
        migrations.AlterField(
            model_name='someitem',
            name='is_clean',
            field=models.BooleanField(),
        ),
    ]