27 lines
603 B
Python
27 lines
603 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.20 on 2019-07-25 04:52
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('documents', '0050_auto_20190725_0451'),
|
|
('checkouts', '0007_auto_20180310_1715'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='CheckedOutDocument',
|
|
fields=[
|
|
],
|
|
options={
|
|
'proxy': True,
|
|
'indexes': [],
|
|
},
|
|
bases=('documents.document',),
|
|
),
|
|
]
|