On Wed, Dec 13, 2017 at 11:21 AM, Göran Hasse <gorhas(at)gmail(dot)com> wrote:
> Is there any way to inherit also
> the triggers from the common_field table?
>
No
> Or must I place triggers on all tables?
>
Yes
The docs cover what is able to be copied and triggers are not mentioned.
https://www.postgresql.org/docs/10/static/sql-createtable.html
Mostly column-related things are copied, not table-related things (e.g.,
table comments, triggers, policies)
I suspect its mostly a lack of need warranting the effort than any
fundamental design reason.
David J.