pull/1568/head
Piero Toffanin 2024-11-06 15:19:11 -05:00
rodzic 2c103dbd63
commit 2d83fb039e
1 zmienionych plików z 25 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,25 @@
# Generated by Django 2.2.27 on 2024-11-06 18:32
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('app', '0039_task_orthophoto_bands'),
]
operations = [
migrations.AddField(
model_name='task',
name='public_edit',
field=models.BooleanField(default=False, help_text='A flag indicating whether this public task can be edited', verbose_name='Public Edit'),
),
migrations.AlterField(
model_name='plugindatum',
name='user',
field=models.ForeignKey(blank=True, default=None, help_text='The user this setting belongs to. If NULL, the setting is global.', null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='User'),
),
]