For example, when I'm adding a row to a table with an added_time field
(datetime), I'd like to simply enter "utc_timestamp()" in Sequel Pro's
"spreadsheet" editor, and have it actually work. Is there a way to do
this already?
Thanks heaps. Awesome tool, BTW :)
it is also possible to write your own script (Bundle command) which
will transform/convert your data entered into the desired format.
These commands (written in any scripting language incl. BASH) are
available inside each text input cell's context menu or via main menu
> Bundles > Input Fields. As examples you will find the commands SHA1
and MD5 in the Bundle Editor.
Best,
--Hans
PS the BASH command for utc_timestamp() is:
date -u "+%Y-%m-%d %H:%M:%S"