0006_auto_20171116_0917.py 387 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import models, migrations
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('users', '0005_auto_20171116_0733'),
  7. ]
  8. operations = [
  9. migrations.RenameField(
  10. model_name='reader',
  11. old_name='name',
  12. new_name='readername',
  13. ),
  14. ]