Nuacht

Is your feature request related to a problem? Please describe. I would like to have support for PostgreSQL "CREATE TABLE INHERITS" in order to avoid repeting each time certain common features of ...
Per the postgres docs you can call 'alter table ... inherits' on an existing table so long as the child table already has the fields of the parent. Since typeorm migrations are doing this now, you can ...