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 | 315c877745b604bc4d36c56be5efe6b9f072ab8e (patch) | |
| tree | 1578f864f76522190fd5de88a9ae4e227fefa9c1 /archaeological_finds/migrations | |
| parent | 07935c570053e6a4cefe07de3967c53c038f4fe3 (diff) | |
| download | Ishtar-315c877745b604bc4d36c56be5efe6b9f072ab8e.tar.bz2 Ishtar-315c877745b604bc4d36c56be5efe6b9f072ab8e.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'), + ), + ] |
