# Generated by Django 3.1.13 on 2022-04-05 03:29

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('reviews', '0017_auto_20220303_1045'),
    ]

    operations = [
        migrations.AddField(
            model_name='historicalreviewsource',
            name='sync_status',
            field=models.CharField(blank=True, choices=[('NOT_SYNC', 'Not Sync'), ('SYNCING', 'Syncing'), ('SYNCED', 'Synced')], default='NOT_SYNC', max_length=30, null=True),
        ),
        migrations.AddField(
            model_name='reviewsource',
            name='sync_status',
            field=models.CharField(blank=True, choices=[('NOT_SYNC', 'Not Sync'), ('SYNCING', 'Syncing'), ('SYNCED', 'Synced')], default='NOT_SYNC', max_length=30, null=True),
        ),
    ]
