19 lines
393 B
Python
19 lines
393 B
Python
|
# Generated by Django 4.2.17 on 2025-01-31 13:02
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('datasets', '0005_dataset_categories'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='dataset',
|
||
|
name='is_upload',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|