本文整理汇总了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