Changes between Version 1 and Version 2 of Ticket #26110, comment 2


Ignore:
Timestamp:
Jun 4, 2018, 8:45:17 PM (6 years ago)
Author:
Laurynas Riliskis

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #26110, comment 2

    v1 v2  
    33
    44{{{
     5import uuid
     6from django.db import models
     7from django.contrib.postgres.fields import JSONField
     8
    59class PublishedConsent(models.Model):
    610    uuid = models.UUIDField(
     
    1014}}}
    1115
    12 and then running ./manage shell or through the admin interface, results are the same.
     16and then running ./manage shell  (through the admin interface results are the same):
    1317
    1418{{{
Back to Top