Commit 2fa0740d by muzaffaryousaf

Single migration file for video transcripts.

parent 9bda5dca
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2017-10-09 10:54
# Generated by Django 1.9 on 2017-10-16 12:11
from __future__ import unicode_literals
import VEDA_OS01.models
......@@ -91,7 +91,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='transcriptprocessmetadata',
name='video',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='VEDA_OS01.Video'),
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='transcript_processes', to='VEDA_OS01.Video'),
),
migrations.AlterUniqueTogether(
name='transcriptcredentials',
......
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2017-10-12 12:03
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('VEDA_OS01', '0002_auto_20171009_1054'),
]
operations = [
migrations.AlterField(
model_name='transcriptprocessmetadata',
name='video',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='transcript_processes', to='VEDA_OS01.Video'),
),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment