diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-12-02 19:38:09 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-12-02 19:38:09 +0100 |
commit | df84c1f2b6d7bf469e2a914e43a2f268c90cdd23 (patch) | |
tree | 1578f864f76522190fd5de88a9ae4e227fefa9c1 /archaeological_finds/migrations | |
parent | 948b9799b4a44739b36ba65e01ec27fe21f68255 (diff) | |
download | Ishtar-df84c1f2b6d7bf469e2a914e43a2f268c90cdd23.tar.bz2 Ishtar-df84c1f2b6d7bf469e2a914e43a2f268c90cdd23.zip |
Treatment file sheet: add treatment action
Diffstat (limited to 'archaeological_finds/migrations')
-rw-r--r-- | archaeological_finds/migrations/0046_treatmentfiletype_treatment_type.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/archaeological_finds/migrations/0046_treatmentfiletype_treatment_type.py b/archaeological_finds/migrations/0046_treatmentfiletype_treatment_type.py new file mode 100644 index 000000000..867cd4545 --- /dev/null +++ b/archaeological_finds/migrations/0046_treatmentfiletype_treatment_type.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.10 on 2018-12-02 18:31 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('archaeological_finds', '0045_migrate_current_container_to_ref_container'), + ] + + operations = [ + migrations.AddField( + model_name='treatmentfiletype', + name='treatment_type', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='archaeological_finds.TreatmentType'), + ), + ] |