diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-01-29 17:41:48 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-07-01 18:02:28 +0200 |
| commit | 75387c3c62f8623dfbcc8019c14e68de1391b0c3 (patch) | |
| tree | cd63cc6c0ed2e4d907c0026ea00682067064912b /ishtar_common/migrations/0109_auto_20190911_1256.py | |
| parent | 81bc316440558bf40a97f55424194f84e077f552 (diff) | |
| download | Ishtar-75387c3c62f8623dfbcc8019c14e68de1391b0c3.tar.bz2 Ishtar-75387c3c62f8623dfbcc8019c14e68de1391b0c3.zip | |
Finish migration refactoring
Diffstat (limited to 'ishtar_common/migrations/0109_auto_20190911_1256.py')
| -rw-r--r-- | ishtar_common/migrations/0109_auto_20190911_1256.py | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/ishtar_common/migrations/0109_auto_20190911_1256.py b/ishtar_common/migrations/0109_auto_20190911_1256.py deleted file mode 100644 index 09d6d36f7..000000000 --- a/ishtar_common/migrations/0109_auto_20190911_1256.py +++ /dev/null @@ -1,33 +0,0 @@ -# -*- coding: utf-8 -*- -# Generated by Django 1.11.18 on 2019-09-11 12:56 -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), - ('ishtar_common', '0108_auto_20190910_1323'), - ] - - operations = [ - migrations.AddField( - model_name='exporttask', - name='lock_user', - field=models.ForeignKey(blank=True, help_text='Owner of the lock if item are locked. Warning: if no user is provided the locks can be remove by any user with the permission to edit.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='Lock user'), - ), - migrations.AddField( - model_name='exporttask', - name='put_locks', - field=models.BooleanField(default=False, verbose_name='Put locks on associated items'), - ), - migrations.AddField( - model_name='importtask', - name='releasing_locks', - field=models.BooleanField(default=False, verbose_name='Releasing locks on associated items'), - ), - ] |
