You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
519 B
Python
20 lines
519 B
Python
# Generated by Django 3.1.1 on 2020-12-02 06:47
|
|
|
|
import cvat.apps.engine.models
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('engine', '0034_auto_20201125_1426'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='data',
|
|
name='storage',
|
|
field=models.CharField(choices=[('local', 'LOCAL'), ('share', 'SHARE')], default=cvat.apps.engine.models.StorageChoice['LOCAL'], max_length=15),
|
|
),
|
|
]
|