I am trying to find out the date that each table was created in the database. I used the following code:
SELECT relfilenode,
relname, (pg_stat_file('./base/24576' || '/' || relfilenode::text)).*
FROM pg_class
WHERE relkind LIKE 'r'
AND relfilenode <> 0
order by modification ASC;
The result has null for the creation date of all tables:

How can I have the correct creation date for the tables??