Package daklib :: Package database :: Module architecture :: Class Architecture
[hide private]
[frames] | no frames]

Class Architecture

source code


Instance Methods [hide private]
 
__init__(self, arch_string=None, description=None) source code
 
__str__(self) source code
 
__repr__(self) source code
 
__eq__(self, val) source code
 
__ne__(self, val) source code
Class Methods [hide private]

Inherited from base.BaseTimestamp: __table_cls__

Inherited from base.BaseMethods: get

Class Variables [hide private]
  __tablename__ = "architecture"
  arch_id = Column("id", Integer, primary_key= True)
  arch_string = Column(Text, nullable= False)
  description = Column(Text)
  __table_args__ = Index("architecture_arch_string_key", "arch_s...
  __hash__ = BaseTimestamp.__hash__

Inherited from base.BaseTimestamp: __abstract__, created, modified, modified_trigger, modified_trigger_function

Class Variable Details [hide private]

__table_args__

Value:
Index("architecture_arch_string_key", "arch_string", unique= True),