Python sqlalchemy.ext.declarative.ConcreteBase() Examples
The following are 1
code examples of sqlalchemy.ext.declarative.ConcreteBase().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
sqlalchemy.ext.declarative
, or try the search function
.
Example #1
Source File: test_inheritance.py From sqlalchemy with MIT License | 4 votes |
def test_concrete_extension(self): class Employee(ConcreteBase, Base, fixtures.ComparableEntity): __tablename__ = "employee" employee_id = Column( Integer, primary_key=True, test_needs_autoincrement=True ) name = Column(String(50)) __mapper_args__ = { "polymorphic_identity": "employee", "concrete": True, } class Manager(Employee): __tablename__ = "manager" employee_id = Column( Integer, primary_key=True, test_needs_autoincrement=True ) name = Column(String(50)) golf_swing = Column(String(40)) __mapper_args__ = { "polymorphic_identity": "manager", "concrete": True, } class Boss(Manager): __tablename__ = "boss" employee_id = Column( Integer, primary_key=True, test_needs_autoincrement=True ) name = Column(String(50)) golf_swing = Column(String(40)) __mapper_args__ = { "polymorphic_identity": "boss", "concrete": True, } class Engineer(Employee): __tablename__ = "engineer" employee_id = Column( Integer, primary_key=True, test_needs_autoincrement=True ) name = Column(String(50)) primary_language = Column(String(40)) __mapper_args__ = { "polymorphic_identity": "engineer", "concrete": True, } self._roundtrip(Employee, Manager, Engineer, Boss)