PEP8 cleanups. Add keyword arguments. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
19 lines
381 B
Python
19 lines
381 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('common', '0004_delete_anonymoususersingleton'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='shareduploadedfile',
|
|
old_name='datatime',
|
|
new_name='datetime',
|
|
),
|
|
]
|