0002_book_borrower_phone.py 443 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.5 on 2018-04-07 03:10
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('library', '0001_initial'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='book',
  12. name='borrower_phone',
  13. field=models.IntegerField(null=True),
  14. ),
  15. ]