Files
awx/awx/main/migrations/0084_v360_token_description.py
Ryan Petrello 300f5a3a1f use flake8 to lint for a few things black doesn't catch
black does *not* warn about missing or extraneous imports,
so let's bring back flake8 in our linting to check for them
2021-04-12 12:55:39 -04:00

19 lines
414 B
Python

# Generated by Django 2.2.4 on 2019-08-16 13:22
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('main', '0083_v360_job_branch_override'),
]
operations = [
migrations.AlterField(
model_name='oauth2accesstoken',
name='description',
field=models.TextField(blank=True, default=''),
),
]