20 lines
398 B
Python
20 lines
398 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
# Generated by Django 1.10 on 2016-09-21 05:14
|
||
|
|
from __future__ import unicode_literals
|
||
|
|
|
||
|
|
from django.db import migrations
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('catalog', '0008_auto_20160921_1511'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.RemoveField(
|
||
|
|
model_name='bookinstance',
|
||
|
|
name='summary',
|
||
|
|
),
|
||
|
|
]
|