fwbrasil / activate

Abandoned: Pluggable persistence in Scala
GNU Lesser General Public License v2.1
299 stars 46 forks source link

Support database inheritance with postgres #89

Open vchuravy opened 10 years ago

vchuravy commented 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