0003_auto_20180409_2349.py 710 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.5 on 2018-04-09 15:49
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('library', '0002_book_borrower_phone'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='book',
  12. name='serial_number',
  13. field=models.TextField(default='null', max_length=128),
  14. preserve_default=False,
  15. ),
  16. migrations.AddField(
  17. model_name='book',
  18. name='writer',
  19. field=models.TextField(default='null', max_length=128),
  20. preserve_default=False,
  21. ),
  22. ]