0008_auto_20160517_1548.py 390 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('backend', '0007_auto_20160516_1227'),
  7. ]
  8. operations = [
  9. migrations.RenameField(
  10. model_name='fingerprint',
  11. old_name='user',
  12. new_name='person',
  13. ),
  14. ]