mirror of
https://github.com/Hopiu/django.git
synced 2026-04-01 13:50:42 +00:00
Originally I added migrations to flake8 exclude because of long lines in migration files, but there are other directories named migrations we do want to check. We are not warning on line lengths yet anyway.
9 lines
211 B
Python
9 lines
211 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [('migrations', '0001_initial')]
|
|
operations = []
|