django-eav2/eav/migrations/0004_alter_value_value_bool.py
pre-commit-ci[bot] 6047a9c486
[pre-commit.ci] pre-commit autoupdate (#316)
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/psf/black: 22.12.0 → 23.1.0](https://github.com/psf/black/compare/22.12.0...23.1.0)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2023-02-06 19:48:54 -08:00

17 lines
393 B
Python

# Generated by Django 3.2 on 2021-04-23 19:06
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('eav', '0003_auto_20210404_2209'),
]
operations = [
migrations.AlterField(
model_name='value',
name='value_bool',
field=models.BooleanField(blank=True, null=True),
),
]