「Django」UUID(Universally Unique Identifier)を利用するサンプル

サンプルコード

from django.db import models
import uuid

class Sample(models.Model):
    sampleId = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)

Python

Posted by arkgame