Skip to content

Commit

Permalink
change crypt model to use UUID as pk
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Nov 24, 2016
1 parent cde47c5 commit 556284d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django_crypto_fields/models.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from django_crypto_fields.crypt_model_mixin import CryptModelMixin

from edc_base.model.models import BaseModel
from edc_base.model.models import BaseUuidModel


class Crypt(CryptModelMixin, BaseModel):
class Crypt(CryptModelMixin, BaseUuidModel):

class Meta:
app_label = 'django_crypto_fields'
Expand Down

0 comments on commit 556284d

Please sign in to comment.