Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Commit

Permalink
Include DB migration script of latest model changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronstephenson committed Aug 24, 2017
1 parent 8e82af7 commit d8250a5
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions lideservices/migrations/0005_auto_20170823_2334.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.2 on 2017-08-23 23:34
from __future__ import unicode_literals

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('lideservices', '0004_auto_20170823_2303'),
]

operations = [
migrations.AlterField(
model_name='finalconcentratedsamplevolume',
name='concentration_type',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='final_concentrated_sample_volumes', to='lideservices.ConcentrationType'),
),
migrations.AlterField(
model_name='finalconcentratedsamplevolume',
name='sample',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='final_concentrated_sample_volumes', to='lideservices.Sample'),
),
]

0 comments on commit d8250a5

Please sign in to comment.