zhongrj
2025-11-25 b89962006164a462404b79a738bee8cbb6d7fe7e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
# Generated by Django 1.11.1 on 2017-11-30 15:41
from __future__ import unicode_literals
 
from django.db import migrations, models
 
from webodm import settings
 
class Migration(migrations.Migration):
 
    dependencies = [
        ('app', '0014_public_task_uuids'),
    ]
 
    operations = [
        migrations.AlterField(
            model_name='imageupload',
            name='task',
            field=models.ForeignKey(null=False, on_delete=models.CASCADE, help_text="Task this image belongs to", to='app.Task')
        ),
    ]