mirror of
https://github.com/etesync/server
synced 2024-11-06 00:09:15 +00:00
4054a2f78c
Deletion is essentially an update with "isDeletion" set to True.
19 lines
415 B
Python
19 lines
415 B
Python
# Generated by Django 3.0.3 on 2020-02-26 13:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('django_etesync', '0012_auto_20200220_2038'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='collectionitemrevision',
|
|
name='is_deletion',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|