mirror of
https://github.com/ansible/awx.git
synced 2026-04-23 10:45:24 -02:30
black does *not* warn about missing or extraneous imports, so let's bring back flake8 in our linting to check for them
25 lines
579 B
Python
25 lines
579 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.7 on 2018-02-27 17:58
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
# TODO: Squash all of these migrations with '0024_v330_add_oauth_activity_stream_registrar'
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0025_v330_add_oauth_activity_stream_registrar'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='authtoken',
|
|
name='user',
|
|
),
|
|
migrations.DeleteModel(
|
|
name='AuthToken',
|
|
),
|
|
]
|