Hi,
I'm trying to manage a postgres database with ansible.
Database OK, users OK, tables OK.
But now I have a table which has a field that should auto update with
NOW() upon changes. So far that requires SQL statements like this:
CREATE FUNCTION ...
CREATE TRIGGER...
I looked at https://docs.ansible.com/ansible/latest/collections/community/postgresql/index.html
but I don;t immediately see something that suits...
Any suggestions?
thx!
Dick