# -*- coding: utf-8 -*-
# Generated by Django 1.11.13 on 2018-07-12 18:10
from __future__ import unicode_literals

from django.db import migrations, models
import pgcrypto.fields


class Migration(migrations.Migration):

    dependencies = [
        ('backoffice', '0052_user_ios'),
    ]

    operations = [
        migrations.AlterField(
            model_name='category',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='chat',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='chatmessage',
            name='createdAt',
            field=pgcrypto.fields.EncryptedDateTimeField(blank=True, charset=b'utf-8', check_armor=True, cipher=b'AES', editable=False, versioned=False),
        ),
        migrations.AlterField(
            model_name='chatmessage',
            name='isMediaMessage',
            field=pgcrypto.fields.EncryptedIntegerField(charset=b'utf-8', check_armor=True, cipher=b'AES', default=0, versioned=False),
        ),
        migrations.AlterField(
            model_name='chatmessage',
            name='isRead',
            field=pgcrypto.fields.EncryptedIntegerField(charset=b'utf-8', check_armor=True, cipher=b'AES', default=0, versioned=False),
        ),
        migrations.AlterField(
            model_name='chatmessage',
            name='mediaType',
            field=pgcrypto.fields.EncryptedIntegerField(blank=True, charset=b'utf-8', check_armor=True, choices=[(0, 'location'), (1, 'photo')], cipher=b'AES', null=True, versioned=False),
        ),
        migrations.AlterField(
            model_name='chatmessage',
            name='mediaValue',
            field=pgcrypto.fields.EncryptedCharField(blank=True, charset=b'utf-8', check_armor=True, cipher=b'AES', null=True, versioned=False),
        ),
        migrations.AlterField(
            model_name='chatmessage',
            name='message',
            field=pgcrypto.fields.EncryptedTextField(blank=True, charset=b'utf-8', check_armor=True, cipher=b'AES', null=True, versioned=False),
        ),
        migrations.AlterField(
            model_name='chatmessage',
            name='senderDisplayName',
            field=pgcrypto.fields.EncryptedCharField(blank=True, charset=b'utf-8', check_armor=True, cipher=b'AES', null=True, versioned=False),
        ),
        migrations.AlterField(
            model_name='chatmessage',
            name='updatedAt',
            field=pgcrypto.fields.EncryptedDateTimeField(blank=True, charset=b'utf-8', check_armor=True, cipher=b'AES', editable=False, versioned=False),
        ),
        migrations.AlterField(
            model_name='checkinevent',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='event',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='eventcategory',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='eventcomments',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='eventusers',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='gotoevent',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='notificationtosend',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='photo',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='photoevents',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='placescomments',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='placesusers',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='placesvote',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='postcomments',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='promo',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='subscription',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='town',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
        migrations.AlterField(
            model_name='userlike',
            name='createdAt',
            field=models.DateTimeField(auto_now_add=True),
        ),
    ]
