# -*- coding: utf-8 -*- # Generated by Django 1.11.5 on 2018-04-09 15:49 from __future__ import unicode_literals from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('library', '0002_book_borrower_phone'), ] operations = [ migrations.AddField( model_name='book', name='serial_number', field=models.TextField(default='null', max_length=128), preserve_default=False, ), migrations.AddField( model_name='book', name='writer', field=models.TextField(default='null', max_length=128), preserve_default=False, ), ]