Files
python-test/catalog/migrations/0019_bookinstance_borrower.py
admin-tea 9bf877f169
ci-tests/python-test/pipeline/head This commit looks good
updated the file and adding jenkinsfile
2021-02-02 10:43:26 +02:00

24 lines
667 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2016-10-11 09:40
from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('catalog', '0018_book_language'),
]
operations = [
migrations.AddField(
model_name='bookinstance',
name='borrower',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to=settings.AUTH_USER_MODEL),
),
]