1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.5 on 2018-04-07 03:10
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('library', '0001_initial'),
- ]
- operations = [
- migrations.AddField(
- model_name='book',
- name='borrower_phone',
- field=models.IntegerField(null=True),
- ),
- ]
|