Hi,
Is there a way in SA to create an inheriting table without needing to
specify all its parent's columns (hence _not at the ORM level_ , am I
not right?) at the table level, like what the "CREATE TABLE capitals"
does below --
"""
CREATE TABLE cities (
name text,
population float,
altitude int
);
CREATE TABLE capitals (
state char(2)
) INHERITS (cities);
"""
Many thanks in advance.
Sincerely,
Jerry
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/sqlalchemy?hl=en
-~----------~----~----~----~------~----~------~--~---