Skip to content

Commit

Permalink
update migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Nov 24, 2016
1 parent 88dcea8 commit c21cd74
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions django_crypto_fields/migrations/0003_auto_20161124_1835.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2016-11-24 18:35
from __future__ import unicode_literals

from django.db import migrations
import edc_base.model.fields.uuid_auto_field


class Migration(migrations.Migration):

dependencies = [
('django_crypto_fields', '0002_crypt_cipher_mode'),
]

operations = [
migrations.AlterField(
model_name='crypt',
name='id',
field=edc_base.model.fields.uuid_auto_field.UUIDAutoField(blank=True, editable=False, help_text='System auto field. UUID primary key.', primary_key=True, serialize=False),
),
]

0 comments on commit c21cd74

Please sign in to comment.