Is there a way to get a date and time of when a particular database was created in Postgresql?
The \list
command does not provide a timestamp.
Is there a way to get a date and time of when a particular database was created in Postgresql? The |
||||
|
There's no built-in method to do so, but there are workarounds. Note however that even So the only reliable way to store a creation date is to make a one-row table with the date in it. If this feature is important to your application you could consider funding its development. I think it'd be pretty trivial to implement. |
|||
|