mirror of
https://github.com/etesync/server
synced 2024-11-06 00:09:15 +00:00
20 lines
504 B
Python
20 lines
504 B
Python
# Generated by Django 3.0.3 on 2020-02-20 12:20
|
|
|
|
from django.db import migrations, models
|
|
import django_etesync.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('django_etesync', '0008_collectionitemchunk_chunkfile'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='collectionitemchunk',
|
|
name='chunkFile',
|
|
field=models.FileField(max_length=150, upload_to=django_etesync.models.chunk_directory_path),
|
|
),
|
|
]
|