Files
mayan-edms/mayan/apps/checkouts/migrations/0002_documentcheckout_user.py
Roberto Rosario 503af584d5 Migrations: Remove superfluous code comments
Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
2018-12-14 02:35:24 -04:00

25 lines
615 B
Python

from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('checkouts', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='documentcheckout',
name='user',
field=models.ForeignKey(
verbose_name='User', blank=True, to=settings.AUTH_USER_MODEL,
null=True
),
preserve_default=True,
),
]