當前位置: 首頁>>代碼示例>>Python>>正文


Python sqlalchemy_utils.UUIDType方法代碼示例

本文整理匯總了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
        ) 
開發者ID:gnocchixyz,項目名稱:gnocchi,代碼行數:17,代碼來源:sqlalchemy_base.py

示例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 
開發者ID:johnbywater,項目名稱:eventsourcing,代碼行數:13,代碼來源:test_process.py


注:本文中的sqlalchemy_utils.UUIDType方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。