Open vchuravy opened 10 years ago
Postgres supports Table Inheritance since 8.4 http://www.postgresql.org/docs/9.3/static/ddl-inherit.html
It allows for easy table partition and would be nice match to the oo-side of scala.
Table Post (...) Table Question inherits Post Table Answer inherits Post
select * from Post => returns Post + Question + Answer
Postgres supports Table Inheritance since 8.4 http://www.postgresql.org/docs/9.3/static/ddl-inherit.html
It allows for easy table partition and would be nice match to the oo-side of scala.
Table Post (...) Table Question inherits Post Table Answer inherits Post
select * from Post => returns Post + Question + Answer