本文整理匯總了Python中sqlalchemy_utils.UUIDType方法的典型用法代碼示例。如果您正苦於以下問題:Python sqlalchemy_utils.UUIDType方法的具體用法?Python sqlalchemy_utils.UUIDType怎麽用?Python sqlalchemy_utils.UUIDType使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sqlalchemy_utils
的用法示例。
在下文中一共展示了sqlalchemy_utils.UUIDType方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: id
# 需要導入模塊: import sqlalchemy_utils [as 別名]
# 或者: from sqlalchemy_utils import UUIDType [as 別名]
def id(cls):
tablename_compact = cls.__tablename__
if tablename_compact.endswith("_history"):
tablename_compact = tablename_compact[:-6]
return sqlalchemy.Column(
sqlalchemy_utils.UUIDType(),
sqlalchemy.ForeignKey(
'resource.id',
ondelete="CASCADE",
name="fk_%s_id_resource_id" % tablename_compact,
# NOTE(sileht): We use to ensure that postgresql
# does not use AccessExclusiveLock on destination table
use_alter=True),
primary_key=True
)
示例2: define_projection_record_class
# 需要導入模塊: import sqlalchemy_utils [as 別名]
# 或者: from sqlalchemy_utils import UUIDType [as 別名]
def define_projection_record_class(self):
class ProjectionRecord(Base):
__tablename__ = "projections"
# Projection ID.
projection_id = Column(UUIDType(), primary_key=True)
# State of the projection (serialized dict, possibly encrypted).
state = Column(Text())
self.projection_record_class = ProjectionRecord